Skip to content

Commit

Permalink
Create post (#31)
Browse files Browse the repository at this point in the history
* formstate err

* #19 feat: 로그인 유효성검증

* feat:login-style-prototype

* feat:login-style-prototype

* test(#19)

* feat:19-login-style2(#19)

* feat:19-login-style3(#19)

* feat/19-login-style(3)

* feat:19-post

* feat:25-createPost(#25)

* feat:25-createPost-style(#25)

* feat:25-createPost-style(#25)

* feat:25-createPost(#25)

* feat:25-styled-components(#25)

* feat:25-Error-fixed(#25)

* feat:25-loginData(#25)

* feat:25-api연동(#25)

* feat:25-gitpull(#25)
  • Loading branch information
limyira authored Jan 31, 2023
1 parent 90d162a commit b2db54b
Show file tree
Hide file tree
Showing 27 changed files with 1,560 additions and 38 deletions.
23 changes: 23 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
216 changes: 197 additions & 19 deletions app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.1.3",
"framer-motion": "^8.5.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-cookie": "^4.1.1",
Expand Down
6 changes: 5 additions & 1 deletion app/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ import './App.css';
import { Main, SignUp, Post } from './pages/index';
import { PATH } from './constants/path';
import Login from './pages/Login';
<<<<<<< HEAD
import CreatePost from './pages/Upload';
=======
>>>>>>> 90d162a6bad55ca2549583c22fcc668cc0fba327

/* prop 타입체크 */
// import PropTypes from 'prop-types';
Expand All @@ -24,6 +28,7 @@ function App() {
<Route path={PATH.SIGNUP} element={<SignUp></SignUp>}></Route>
<Route path={PATH.LOGIN} element={<Login />}></Route>
<Route path={PATH.POST} element={<Post></Post>}></Route>
<Route path={PATH.CREATE_POST} element={<CreatePost />}></Route>
</Routes>
</div>
);
Expand All @@ -34,5 +39,4 @@ Index.propTypes = {
prop이름: PropTypes.array,
};
*/

export default App;
Loading

0 comments on commit b2db54b

Please sign in to comment.