Skip to content

Commit ac24b66

Browse files
final_version
1 parent ffe89d6 commit ac24b66

File tree

8 files changed

+118
-50
lines changed

8 files changed

+118
-50
lines changed

package-lock.json

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

src/App.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React, { Component } from 'react';
1+
import React, { Component, Text } from 'react';
22
import './App.css';
33
import TopComponent from './TopComponent';
44
import MainComponent from './MainComponent';
@@ -142,7 +142,7 @@ class App extends Component {
142142
<br></br>
143143
<Inputadress onDataChange={this.handleInput_addressData}/>
144144
<br></br>
145-
<InputMemo />
145+
{/* <InputMemo /> */}
146146
<br></br>
147147
<br></br>
148148
</div>

src/TopComponent.js

+13-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
11
import React from 'react';
2+
import { Image, Text } from 'react-native';
3+
4+
const text_style = {
5+
fontWeight: 'bold',
6+
};
27

38
function topComponent() {
49
return (
5-
<div className='Top'>
6-
술팖
7-
</div>
10+
<div>
11+
<div className='Top'>
12+
술팖
13+
</div>
14+
<Text style={text_style}>
15+
카카오뱅크 3333-08-6928690 박주환
16+
</Text>
17+
</div>
818
);
919
}
1020

src/components/Order.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class Order extends React.Component {
1919

2020
// 가격을 계산합니다.
2121

22-
const totalPrice = 500 * this.props.alcohol_number;
22+
const totalPrice = 1000 * this.props.alcohol_number;
2323

2424
return (
2525
<div style={divStyle}>

src/img/money.png

92.7 KB
Loading

src/pop_up/TypeOfAlcohol.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,13 @@ function TypeOfAlcohol({ onDataChange }) {
4444
>
4545
<option>---선택---</option>
4646
<option>참이슬</option>
47-
<option>참이슬 오리지널</option>
48-
<option>진로이즈백</option>
47+
<option>진로</option>
4948
<option>새로</option>
5049
<option>별빛청하</option>
5150
<option>처음처럼</option>
51+
<option>카스</option>
52+
<option>테라</option>
53+
<option>콜라</option>
5254
</select>
5355
</td>
5456
</tr>

src/pop_up/inputAdress.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ function InputAdress({ onDataChange }) {
4141
>
4242
<option>---------- 선택 ----------</option>
4343
<option>텔레토비 동산</option>
44-
<option>가온마당</option>
44+
<option>도서관 옆 마당</option>
4545
</select>
4646
</td>
4747
</tr>

0 commit comments

Comments
 (0)