This repository has been archived on 2024-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
seeconf-landing-page-master/index.js

12 lines
201 B
JavaScript
Raw Normal View History

2022-06-15 16:28:16 +08:00
import React from 'react';
import ReactDOM from 'react-dom';
import Home from './src/Home';
function App() {
return (
<Home />
);
}
ReactDOM.render(<App />, document.getElementById('root'));