Skip to content

Commit 40df17e

Browse files
committed
chore: cleanup both package-lock.json files
1 parent 9397714 commit 40df17e

File tree

7 files changed

+54
-1019
lines changed

7 files changed

+54
-1019
lines changed

client/package-lock.json

Lines changed: 1 addition & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/src/App.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { useState } from "react";
2-
import Header from "./sections/Header";
3-
import Options from "./sections/Options";
4-
import Preview from "./sections/Preview";
2+
import Header from "./pages/Header";
3+
import Options from "./pages/Options";
4+
import Preview from "./pages/Preview";
55

66
const App = () => {
77
const [link, setLink] = useState<string>(

client/src/index.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,12 @@ import React from "react";
22
import ReactDOM from "react-dom/client";
33
import "./index.css";
44
import App from "./App";
5-
import { RecoilRoot } from "recoil";
65

76
const root = ReactDOM.createRoot(
87
document.getElementById("root") as HTMLElement
98
);
109
root.render(
1110
<React.StrictMode>
12-
<RecoilRoot>
13-
<App />
14-
</RecoilRoot>
11+
<App />
1512
</React.StrictMode>
1613
);
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)