14 lines
305 B
JavaScript
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>
|
|
);
|
|
};
|