mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-12-20 00:31:55 +03:00
10 lines
191 B
React
10 lines
191 B
React
|
import { render } from 'preact';
|
||
|
import { App } from './app';
|
||
|
|
||
|
import 'iconify-icon';
|
||
|
import '@github/time-elements';
|
||
|
|
||
|
import './index.css';
|
||
|
|
||
|
render(<App />, document.getElementById('app'));
|