mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2025-01-08 06:57:21 +03:00
19 lines
441 B
TypeScript
19 lines
441 B
TypeScript
|
import './main.pcss';
|
||
|
import './lib/ant/ant.less';
|
||
|
import React from 'react';
|
||
|
import ReactDOM from 'react-dom';
|
||
|
import Store, { storeValue } from 'Store/installStore';
|
||
|
import './lib/ant';
|
||
|
|
||
|
import Install from './components/Install';
|
||
|
|
||
|
const Container = () => {
|
||
|
return (
|
||
|
<Store.Provider value={storeValue}>
|
||
|
<Install/>
|
||
|
</Store.Provider>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
ReactDOM.render(<Container />, document.getElementById('app'));
|