mirror of
https://github.com/logto-io/logto.git
synced 2025-01-20 21:32:31 -05:00
cc8bb825fb
* feat(console): active tab by route * refactor(console): export sidebar utils and consts in index
7 lines
163 B
TypeScript
7 lines
163 B
TypeScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
|
|
import App from './App';
|
|
|
|
const app = document.querySelector('#app');
|
|
ReactDOM.render(<App />, app);
|