Add hard coded wishlist component
[perfect-gift.git] / frontend / src / index.js
CommitLineData
05b9ad64
JC
1import React from 'react';
2import ReactDOM from 'react-dom';
05b9ad64 3import App from './App';
05b9ad64
JC
4
5ReactDOM.render(
7f640a6b
JC
6 <React.StrictMode>
7 <App />
8 </React.StrictMode>,
9 document.getElementById('root')
05b9ad64 10);