spoti-search/src/components/Results.tsx

15 lines
267 B
TypeScript
Raw Normal View History

2020-07-23 09:43:12 +00:00
import React, { PropsWithChildren } from 'react';
import { Box } from 'grommet';
export const Results = (props: PropsWithChildren<{}>) => {
return (
<Box
as='section'
direction='row'
justify='center'
margin={{ vertical: 'large' }}
>
</Box>
);
};