TinyForest system front-end written with ReactJS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
413 B

import React from 'react';
import ModalList from './ModalList';
//import ModalGrid from './ModalGrid';
// TODO fix modallist to display right item
const Home = () => {
return (
<div>
<div className="wrapper">
<h1 style={{padding:10, fontSize:45}}>Welcome to TinyForest</h1>
<ModalList />
</div>
</div>
);
};
export default Home;