From 68df2bd4d933734037cae2449114f36efde03bfa Mon Sep 17 00:00:00 2001 From: "gitauto-ai[bot]" <161652217+gitauto-ai[bot]@users.noreply.github.com> Date: Wed, 18 Sep 2024 00:08:45 +0000 Subject: [PATCH] Update src/index.js. --- src/index.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/index.js diff --git a/src/index.js b/src/index.js new file mode 100644 index 0000000..58d3bf5 --- /dev/null +++ b/src/index.js @@ -0,0 +1,14 @@ +import React from 'react'; +import ReactDOM from 'react-dom'; +import './index.css'; +import Calendar from './components/Calendar'; + +const App = () => { + return ( +
+ +
+ ); +}; + +ReactDOM.render(, document.getElementById('root'));