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.
 
 
 
 

13 lines
305 B

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>
);
};