mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-27 14:44:07 +00:00
* poc: bruno app rsbuild * fix: updates --------- Co-authored-by: Anoop M D <anoop.md1421@gmail.com>
15 lines
307 B
JavaScript
15 lines
307 B
JavaScript
import React from 'react';
|
|
import ReactDOM from 'react-dom/client';
|
|
import App from './pages/index';
|
|
|
|
const rootElement = document.getElementById('root');
|
|
|
|
if (rootElement) {
|
|
const root = ReactDOM.createRoot(rootElement);
|
|
root.render(
|
|
<React.StrictMode>
|
|
<App />
|
|
</React.StrictMode>
|
|
);
|
|
}
|