main
ts 11 lines 440 Bytes
Raw
1 // This file is part of HFS - Copyright 2021-2023, Massimo Melina <a@rejetto.com> - License https://www.gnu.org/licenses/gpl-3.0.txt
2
3 import { createElement as h, StrictMode } from 'react'
4 import { createRoot } from 'react-dom/client'
5 import './index.scss'
6 import '@hfs/shared/min-crypto-polyfill'
7 import '@hfs/shared/polyfills'
8 import App from './App'
9
10 createRoot(document.getElementById('root')!)
11 .render( h(StrictMode, {}, h(App)) )