2021-10-06 16:18:01 +13:00
|
|
|
import { Container } from 'reactstrap';
|
2021-10-06 12:36:39 +13:00
|
|
|
|
|
|
|
function App() {
|
|
|
|
return (
|
|
|
|
<div className="App">
|
2021-10-06 16:18:01 +13:00
|
|
|
<Container className="p-2">
|
|
|
|
<h1>Right Tree</h1>
|
|
|
|
<h4>Right Plant Right Place Right Time</h4>
|
|
|
|
</Container>
|
2021-10-06 12:36:39 +13:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default App;
|