Skip to content

Commit

Permalink
added chakra ui
Browse files Browse the repository at this point in the history
  • Loading branch information
michellelin1 committed Nov 27, 2023
1 parent 82fdb79 commit 062f12a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,6 @@ dist-ssr

npm-debug.log*
yarn-debug.log*
yarn-error.log*
yarn-error.log*

firebase-adminsdk.json
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
},
"dependencies": {
"firebase": "^10.7.0",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"framer-motion": "^10.16.5",
"lint-staged": "^14.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
Expand Down
7 changes: 4 additions & 3 deletions src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import './App.css';
import { ChakraProvider, Text } from '@chakra-ui/react'

const App = () => {
return (
<>
<p>Hello World</p>
</>
<ChakraProvider>
<Text>Hello World</Text>
</ChakraProvider>
);
};

Expand Down

0 comments on commit 062f12a

Please sign in to comment.