spaceport/webclient/src/Garden.js
2022-07-13 00:51:28 -06:00

14 lines
305 B
JavaScript

import React from 'react';
import { Container, Header, Image } from 'semantic-ui-react';
import { staticUrl } from './utils.js';
export function Garden(props) {
return (
<Container>
<Header size='large'>Protogarden</Header>
<Image src={staticUrl + '/garden-large.jpg'} />
</Container>
);
};