mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-04-24 04:25:34 +08:00
chore: configure some stuff
This commit is contained in:
2
example/index.html
Normal file
2
example/index.html
Normal file
@@ -0,0 +1,2 @@
|
||||
<div id="root"></div>
|
||||
<script src="./index.tsx"></script>
|
||||
8
example/index.tsx
Normal file
8
example/index.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import * as React from 'react';
|
||||
import { render } from 'react-dom';
|
||||
|
||||
function App() {
|
||||
return <h1>Hello world</h1>;
|
||||
}
|
||||
|
||||
render(<App />, document.getElementById('root'));
|
||||
Reference in New Issue
Block a user