Commit fabdb9ce authored by Choi Ga Young's avatar Choi Ga Young
Browse files

for merge

parent cb4bf841
This diff is collapsed.
...@@ -9,11 +9,13 @@ ...@@ -9,11 +9,13 @@
"axios": "^0.21.4", "axios": "^0.21.4",
"bootstrap": "^5.1.1", "bootstrap": "^5.1.1",
"bootstrap-icons": "^1.5.0", "bootstrap-icons": "^1.5.0",
"formik": "^2.2.9",
"react": "^17.0.2", "react": "^17.0.2",
"react-dom": "^17.0.2", "react-dom": "^17.0.2",
"react-router-dom": "^5.3.0", "react-router-dom": "^5.3.0",
"react-scripts": "4.0.3", "react-scripts": "4.0.3",
"web-vitals": "^1.1.2" "web-vitals": "^1.1.2",
"yup": "^0.32.9"
}, },
"scripts": { "scripts": {
"start": "react-scripts start", "start": "react-scripts start",
......
import React from 'react';
function LoginPage () {
return(
<p>로그인</p>
);
}
export default LoginPage;
\ No newline at end of file
import React from 'react';
function SingupPage () {
return(
<p>회원가입</p>
);
}
export default SingupPage;
\ No newline at end of file
...@@ -2,7 +2,8 @@ import { BrowserRouter as Router, Route, Switch } from "react-router-dom"; ...@@ -2,7 +2,8 @@ import { BrowserRouter as Router, Route, Switch } from "react-router-dom";
function App() { function App() {
return ( return (
<></> <>
</>
); );
} }
......
This diff is collapsed.
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment