spaceport/webclient/src/Garden.js

14 lines
305 B
JavaScript
Raw Normal View History

2022-07-13 06:51:28 +00:00
import React from 'react';
import { Container, Header, Image } from 'semantic-ui-react';
import { staticUrl } from './utils.js';
2022-05-17 02:38:20 +00:00
export function Garden(props) {
return (
<Container>
<Header size='large'>Protogarden</Header>
<Image src={staticUrl + '/garden-large.jpg'} />
</Container>
);
};