initial commit
This commit is contained in:
13
src/index.tsx
Normal file
13
src/index.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import React from 'react';
|
||||
import ReactDOM from 'react-dom';
|
||||
import App from 'aoe_technology_radar/src/components/App';
|
||||
import 'aoe_technology_radar/src/index.scss';
|
||||
import {Item} from "aoe_technology_radar/src/model";
|
||||
import radardata from './rd.json';
|
||||
|
||||
ReactDOM.render(
|
||||
<React.StrictMode>
|
||||
<App items={radardata.items as Item[]} releases={radardata.releases as string[]} />
|
||||
</React.StrictMode>,
|
||||
document.getElementById('root')
|
||||
);
|
||||
1
src/rd.json
Normal file
1
src/rd.json
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user