Skip to content

Commit

Permalink
feat: add authentication to board
Browse files Browse the repository at this point in the history
  • Loading branch information
jinho-choi123 committed Nov 24, 2023
1 parent 2354d9f commit 044a1e2
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { Board } from "@/components";
import { AuthPage } from "@/components";
import { Provider } from "react-redux";
import { store } from "@/redux/store";

const App = () => (
<Provider store={store}>
<Board />
<AuthPage />
</Provider>
);

Expand Down
41 changes: 41 additions & 0 deletions src/components/Auth/Auth.module.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
@import "src/styles";

.modalWrapper {
display: flex;
justify-content: center;
align-items: center;
padding-top: 500px;
}

.modalContainer {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 300px;
max-width: 1800px;
}

.modalTitle {
font-size: 100px;
}

.modalContent {
font-size: 50px;
}

.form {
display: flex;
flex-direction: column;
margin-top: 100px;
}

.input {
font-size: 50px;
margin: 10px;
}

.submit {
margin-top: 20px;
font-size: 50px;
}
1 change: 1 addition & 0 deletions src/components/Auth/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from "./Auth";
1 change: 1 addition & 0 deletions src/components/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export * from "./Board";
export * from "./Auth";

0 comments on commit 044a1e2

Please sign in to comment.