Add Grommet and Styled Components

This commit is contained in:
2020-07-22 12:49:22 +02:00
parent 6723cf6312
commit 1c336a7834
4 changed files with 185 additions and 28 deletions

View File

@@ -1,10 +1,21 @@
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>
);
}