Skip to content

Commit 97435d4

Browse files
System AdministratorSystem Administrator
System Administrator
authored and
System Administrator
committed
테스트 구성
1 parent c94f847 commit 97435d4

File tree

11 files changed

+34
-91
lines changed

11 files changed

+34
-91
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ furnished to do so, subject to the following conditions:
1212
The above copyright notice and this permission notice shall be included in all
1313
copies or substantial portions of the Software.
1414

15-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR햣
1616
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1717
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER

public/assets/images/icon.js

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

public/assets/images/그룹 81.svg

+1
Loading

src/App.css

-38
This file was deleted.

src/App.js

+4-19
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,10 @@
11
import React from 'react';
2-
import logo from './logo.svg';
3-
import './App.css';
4-
2+
import Button from './component/button'
53
function App() {
64
return (
7-
<div className="App">
8-
<header className="App-header">
9-
<img src={logo} className="App-logo" alt="logo" />
10-
<p>
11-
Edit <code>src/App.js</code> and save to reload.
12-
</p>
13-
<a
14-
className="App-link"
15-
href="https://reactjs.org"
16-
target="_blank"
17-
rel="noopener noreferrer"
18-
>
19-
Learn React
20-
</a>
21-
</header>
22-
</div>
5+
<>
6+
<Button />
7+
</>
238
);
249
}
2510

src/App.test.js

-9
This file was deleted.

src/component/button.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import React from 'react'
2+
import styled from 'styled-components';
3+
import test from '../style/test.svg';
4+
5+
const Button = styled.button`
6+
background: url(${test}) no-repeat;
7+
width:100px;
8+
height:100px;
9+
`;
10+
11+
export default function button() {
12+
return (
13+
<div>
14+
<Button onClick={()=> console.log("테스트")}></Button>
15+
</div>
16+
)
17+
}

src/index.css

-13
This file was deleted.

src/index.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
import React from 'react';
22
import ReactDOM from 'react-dom';
3-
import './index.css';
43
import App from './App';
54
import * as serviceWorker from './serviceWorker';
65

76
ReactDOM.render(
8-
<React.StrictMode>
9-
<App />
10-
</React.StrictMode>,
7+
<App />,
118
document.getElementById('root')
129
);
1310

src/logo.svg

-7
This file was deleted.

src/style/test.svg

+1
Loading

0 commit comments

Comments
 (0)