Skip to content

Commit 9db1962

Browse files
authored
Merge pull request #5 from yapp-project/drinkme#2
#2 로그인/회원가입 페이지 레이아웃
2 parents 6557707 + 6dcebf6 commit 9db1962

17 files changed

+460
-72
lines changed

package-lock.json

+186-45
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,8 @@
3030
"not dead",
3131
"not ie <= 11",
3232
"not op_mini all"
33-
]
33+
],
34+
"devDependencies": {
35+
"css-loader": "^2.1.1"
36+
}
3437
}

public/index.html

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
<title>DrinkMe</title>
1313
</head>
1414
<body>
15-
<noscript>You need to enable JavaScript to run this app.</noscript>
1615
<div id="root"></div>
1716
</body>
1817
</html>

src/App.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React, { Component } from "react";
22
import { Route, Switch, withRouter } from "react-router-dom";
33
import { connect } from "react-redux";
4-
import { MainView } from "./containers";
4+
import { MainView, LoginPopup } from "./containers";
55

66
const mapStateToProps = state => {
77
return {};
@@ -14,6 +14,7 @@ class App extends Component {
1414
<div className="App">
1515
<Switch>
1616
<Route exact path="/" component={MainView} />
17+
<Route exact path="/popup" component={LoginPopup} />
1718
</Switch>
1819
</div>
1920
);

src/components/Button/Button.jsx

+8-17
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,14 @@
1-
import React, { Component } from "react";
1+
import React from "react";
22
import classNames from "classnames/bind";
33
import styles from "./Button.scss";
44
const cx = classNames.bind(styles);
55

6-
const defaultProps = {};
7-
const propTypes = {};
8-
9-
class Button extends Component {
10-
render() {
11-
const { value, className, onClick } = this.props;
12-
return (
13-
<button className={cx(styles.button, className)} onClick={onClick}>
14-
{value}
15-
</button>
16-
);
17-
}
18-
}
19-
20-
Button.defaultProps = defaultProps;
21-
Button.propTypes = propTypes;
6+
const Button = ({ className, value, onClick }) => {
7+
return (
8+
<button className={cx(styles.button, className)} onClick={onClick}>
9+
{value}
10+
</button>
11+
);
12+
};
2213

2314
export default Button;

src/components/Div/Div.jsx

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import React from "react";
2+
import classNames from "classnames/bind";
3+
import styles from "./Div.scss";
4+
5+
const cx = classNames.bind(styles);
6+
7+
const Div = ({ className, content, onClick }) => {
8+
return (
9+
<div className={cx(className)} onClick={onClick}>
10+
{content}
11+
</div>
12+
);
13+
};
14+
15+
export default Div;

src/components/Div/Div.scss

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.div {
2+
background: blue;
3+
}

0 commit comments

Comments
 (0)