Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I_Helmet
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
21_22-J 62
I_Helmet
Commits
5f22b056
Commit
5f22b056
authored
Apr 13, 2022
by
Balasuriya D.A.M.
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Install and test Chakra UI
parent
9b79a9f4
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13582 additions
and
11010 deletions
+13582
-11010
IT18021080/Telemedicine-Chat-App/frontend/package-lock.json
IT18021080/Telemedicine-Chat-App/frontend/package-lock.json
+13571
-11008
IT18021080/Telemedicine-Chat-App/frontend/package.json
IT18021080/Telemedicine-Chat-App/frontend/package.json
+4
-0
IT18021080/Telemedicine-Chat-App/frontend/src/App.js
IT18021080/Telemedicine-Chat-App/frontend/src/App.js
+2
-1
IT18021080/Telemedicine-Chat-App/frontend/src/index.js
IT18021080/Telemedicine-Chat-App/frontend/src/index.js
+5
-1
No files found.
IT18021080/Telemedicine-Chat-App/frontend/package-lock.json
View file @
5f22b056
This source diff could not be displayed because it is too large. You can
view the blob
instead.
IT18021080/Telemedicine-Chat-App/frontend/package.json
View file @
5f22b056
...
...
@@ -3,9 +3,13 @@
"version"
:
"0.1.0"
,
"private"
:
true
,
"dependencies"
:
{
"@chakra-ui/react"
:
"^1.8.8"
,
"@emotion/react"
:
"^11.9.0"
,
"@emotion/styled"
:
"^11.8.1"
,
"@testing-library/jest-dom"
:
"^5.16.3"
,
"@testing-library/react"
:
"^12.1.4"
,
"@testing-library/user-event"
:
"^13.5.0"
,
"framer-motion"
:
"^6.2.10"
,
"react"
:
"^18.0.0"
,
"react-dom"
:
"^18.0.0"
,
"react-scripts"
:
"5.0.0"
,
...
...
IT18021080/Telemedicine-Chat-App/frontend/src/App.js
View file @
5f22b056
import
{
Button
}
from
'
@chakra-ui/react
'
;
import
'
./App.css
'
;
function
App
()
{
return
(
<
div
className
=
"
App
"
>
Hello
Docotor
<
Button
colorScheme
=
'
blue
'
>
Button
<
/Button
>
<
/div
>
);
}
...
...
IT18021080/Telemedicine-Chat-App/frontend/src/index.js
View file @
5f22b056
...
...
@@ -2,11 +2,15 @@ import React from 'react';
import
ReactDOM
from
'
react-dom
'
;
import
'
./index.css
'
;
import
App
from
'
./App
'
;
import
{
ChakraProvider
}
from
'
@chakra-ui/react
'
ReactDOM
.
render
(
<
React
.
StrictMode
>
<
ChakraProvider
>
<
App
/>
<
/ChakraProvider
>
<
/React.StrictMode>
,
document
.
getElementById
(
'
root
'
)
//rendering everything on root tag
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment