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/solidity-compiler/src/main.tsx

13 lines
247 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 App from './app/app'
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
3 years ago
)