remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
remix-project/apps/remix-ide/src/index.tsx

17 lines
428 B

3 years ago
// eslint-disable-next-line no-use-before-define
import React from 'react'
import ReactDOM from 'react-dom'
3 years ago
import AppComponent from './app'
// eslint-disable-next-line no-unused-vars
import { RemixApp } from '@remix-ui/app'
const appComponent = new AppComponent()
appComponent.run()
3 years ago
ReactDOM.render(
3 years ago
<React.StrictMode>
<RemixApp app={appComponent}></RemixApp>
</React.StrictMode>,
3 years ago
document.getElementById('root')
)