Skip to content

Commit

Permalink
add index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
DininduSenanayake committed Nov 8, 2024
1 parent 1e228c0 commit 3965394
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import IOPerformanceDashboard from './IOPerformanceDashboard';

const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<React.StrictMode>
<IOPerformanceDashboard />
</React.StrictMode>
);

0 comments on commit 3965394

Please sign in to comment.