spoti-search/src/components/App.tsx

23 lines
303 B
TypeScript

import React from 'react';
import { Grommet } from 'grommet';
const theme = {
global: {
font: {
family: 'Roboto',
size: '18px',
height: '20px',
},
},
};
function App() {
return (
<Grommet theme={theme}>
<h1>Spoti Search</h1>
</Grommet>
);
}
export default App;