forked from Github/frigate
10 lines
166 B
JavaScript
10 lines
166 B
JavaScript
import App from './App';
|
|
import { h, render } from 'preact';
|
|
import 'preact/devtools';
|
|
import './index.css';
|
|
|
|
render(
|
|
<App />,
|
|
document.getElementById('root')
|
|
);
|