Skip to content

Commit f90d9af

Browse files
committed
first commit
1 parent 62000a2 commit f90d9af

File tree

16 files changed

+30
-19
lines changed

16 files changed

+30
-19
lines changed

client/package-lock.json

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

client/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@
2525
"vite": "^4.4.5"
2626
}
2727
}
28+
s

client/public/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@
1313
<div id="root"></div>
1414
</body>
1515
</html>
16+
s

client/src/App.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,4 @@
4040
.read-the-docs {
4141
color: #888;
4242
}
43+
s

client/src/App.jsx

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { useState } from 'react'
2-
import reactLogo from './assets/react.svg'
3-
import viteLogo from '/vite.svg'
4-
import './App.css'
1+
import { useState } from "react";
2+
import reactLogo from "./assets/react.svg";
3+
import viteLogo from "/vite.svg";
4+
import "./App.css";
55

66
function App() {
7-
const [count, setCount] = useState(0)
7+
const [count, setCount] = useState(0);
88

99
return (
1010
<>
@@ -29,7 +29,8 @@ function App() {
2929
Click on the Vite and React logos to learn more
3030
</p>
3131
</>
32-
)
32+
);
3333
}
3434

35-
export default App
35+
export default App;
36+
s;

client/src/assets/react.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

client/src/index.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,4 @@ button:focus-visible {
6767
background-color: #f9f9f9;
6868
}
6969
}
70+
s

client/src/main.jsx

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
import React from 'react'
2-
import ReactDOM from 'react-dom/client'
3-
import App from './App.jsx'
4-
import './index.css'
1+
import React from "react";
2+
import ReactDOM from "react-dom/client";
3+
import App from "./App.jsx";
4+
import "./index.css";
55

6-
ReactDOM.createRoot(document.getElementById('root')).render(
6+
ReactDOM.createRoot(document.getElementById("root")).render(
77
<React.StrictMode>
88
<App />
9-
</React.StrictMode>,
10-
)
9+
</React.StrictMode>
10+
);
11+
s;

client/vite.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ export default defineConfig({
1212
},
1313
},
1414
});
15+
s

server/config/database.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ const config = {
1010
};
1111

1212
export const pool = new pg.Pool(config);
13+
s;

0 commit comments

Comments
 (0)