Skip to content

Commit 57fb982

Browse files
committed
Created react entry point
1 parent 574486c commit 57fb982

File tree

1 file changed

+8
-21
lines changed

1 file changed

+8
-21
lines changed

react-project/src/App.js

Lines changed: 8 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,12 @@
1-
import logo from './logo.svg';
2-
import './App.css';
1+
import React from 'react';
2+
import UnityApp from './UnityApp';
33

44
function App() {
5-
return (
6-
<div className="App">
7-
<header className="App-header">
8-
<img src={logo} className="App-logo" alt="logo" />
9-
<p>
10-
Edit <code>src/App.js</code> and save to reload.
11-
</p>
12-
<a
13-
className="App-link"
14-
href="https://reactjs.org"
15-
target="_blank"
16-
rel="noopener noreferrer"
17-
>
18-
Learn React
19-
</a>
20-
</header>
21-
</div>
22-
);
5+
return (
6+
<div className="App">
7+
<UnityApp />
8+
</div>
9+
);
2310
}
2411

25-
export default App;
12+
export default App;

0 commit comments

Comments
 (0)