mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-26 19:06:11 +01:00
10 lines
166 B
React
10 lines
166 B
React
|
import App from './App';
|
||
|
import { h, render } from 'preact';
|
||
|
import 'preact/devtools';
|
||
|
import './index.css';
|
||
|
|
||
|
render(
|
||
|
<App />,
|
||
|
document.getElementById('root')
|
||
|
);
|