Skip to content

Commit

Permalink
Merge pull request #7 from uwblueprint/S24/sayi/install-chakra-ui
Browse files Browse the repository at this point in the history
Install Chakra UI
  • Loading branch information
sthuray authored Jun 22, 2024
2 parents 2a9bd7f + c60c432 commit 0a770b4
Show file tree
Hide file tree
Showing 3 changed files with 1,268 additions and 9 deletions.
4 changes: 4 additions & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"private": true,
"dependencies": {
"@apollo/client": "^3.3.16",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@rjsf/bootstrap-4": "^2.5.1",
"@rjsf/core": "^2.5.1",
"@testing-library/jest-dom": "^5.11.4",
Expand All @@ -20,6 +23,7 @@
"apollo-upload-client": "^16.0.0",
"axios": "^0.21.1",
"bootstrap": "^4.6.0",
"framer-motion": "^11.2.10",
"graphql": "^15.5.0",
"humps": "^2.0.1",
"json-schema": "^0.3.0",
Expand Down
5 changes: 4 additions & 1 deletion frontend/src/index.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
import React from "react";
import { createRoot } from "react-dom/client";
import { ChakraProvider } from "@chakra-ui/react";

import "./index.css";
import App from "./App";
import reportWebVitals from "./reportWebVitals";

createRoot(document.getElementById("root") as HTMLElement).render(
<React.StrictMode>
<App />
<ChakraProvider>
<App />
</ChakraProvider>
</React.StrictMode>,
);

Expand Down
Loading

0 comments on commit 0a770b4

Please sign in to comment.