You need to sign in or sign up before continuing.
Commit 742c5abc authored by jang dong hyeok's avatar jang dong hyeok
Browse files

Merge branch 'Jiwon' into JangDH

parents b0c694bf 8232407d
import React from "react"; import React from "react";
import HomePage from "./Pages/HomePage";
// import LoginPage from "./Pages/LoginPage";
// import SignUpPage from "./Pages/SignUpPage";
import { BrowserRouter, Route, Routes } from "react-router-dom";
import "tailwindcss/tailwind.css"; import "tailwindcss/tailwind.css";
export const App = () => { export const App = () => {
return ( return (
<div className="text-slate-300 bg-red-600 text-3xl font-bold underline"> <BrowserRouter>
App 안녕하세요. <Routes>
</div> <Route path="/" element={<HomePage />}>
{/* <Route path="login" element={<LoginPage />} />
<Route path="signup" element={<SignUpPage />} /> */}
</Route>
</Routes>
</BrowserRouter>
); );
}; };
import React from "react";
import "tailwindcss/tailwind.css";
type HomeProps = {
title?: string;
};
const HomePage = ({ title = "Simple Survey Form" }: HomeProps) => (
<div className="text-slate-300 text-3xl font-bold">
{title}
</div>
);
export default HomePage;
\ No newline at end of file
import React from "react";
import "tailwindcss/tailwind.css";
type LoginProps = {
};
const LoginPage = ({ }: LoginProps) => (
<div className="text-slate-300 text-3xl font-bold">
로그인페이지
</div>
);
export default LoginPage;
\ No newline at end of file
import React from "react";
import "tailwindcss/tailwind.css";
type SignUpProps = {
};
const SignUpPage = ({ }: SignUpProps) => (
<div className="text-slate-300 text-3xl font-bold">
회원가입페이지
</div>
);
export default SignUpPage;
\ No newline at end of file
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