spoti-search/src/components/Results.tsx

15 lines
267 B
TypeScript

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