mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
8 lines
228 B
TypeScript
8 lines
228 B
TypeScript
import ReactDOM from 'react-dom';
|
|
// eslint-disable-next-line import/no-unassigned-import
|
|
import '@logto/shared/declaration';
|
|
|
|
import App from './App';
|
|
|
|
const app = document.querySelector('#app');
|
|
ReactDOM.render(<App />, app);
|