authorizer/dashboard/src/index.tsx

11 lines
167 B
TypeScript
Raw Permalink Normal View History

import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
2022-05-14 14:50:21 +00:00
ReactDOM.render(
<div>
<App />
</div>,
2022-10-02 17:06:57 +00:00
document.getElementById('root'),
2022-05-14 14:50:21 +00:00
);