Skip to content

Commit

Permalink
Install ChakraUI
Browse files Browse the repository at this point in the history
carolynzhang18 committed Jun 5, 2024

Verified

This commit was signed with the committer’s verified signature.
snyk-bot Snyk bot
1 parent 0561814 commit c6ae7f6
Showing 3 changed files with 1,156 additions and 34 deletions.
4 changes: 4 additions & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
@@ -3,6 +3,9 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@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",
@@ -17,6 +20,7 @@
"@types/react-table": "^7.0.29",
"axios": "^0.28.0",
"bootstrap": "^4.6.0",
"framer-motion": "^11.2.10",
"humps": "^2.0.1",
"json-schema": "^0.3.0",
"json2csv": "^5.0.6",
6 changes: 5 additions & 1 deletion frontend/src/index.tsx
Original file line number Diff line number Diff line change
@@ -2,12 +2,16 @@ import React from "react";
import { createRoot } from "react-dom/client";

import "./index.css";
// eslint-disable-next-line import/no-extraneous-dependencies
import { ChakraProvider } from "@chakra-ui/react";
import App from "./App";
import reportWebVitals from "./reportWebVitals";

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

Loading

0 comments on commit c6ae7f6

Please sign in to comment.