main
ts 10 lines 409 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 App from './App'
8
9 createRoot(document.getElementById('root')!)
10 .render( h(StrictMode, {}, h(App)) )