mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-07 22:05:44 +03:00
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')
|
|
);
|