2020-07-22 09:57:07 +00:00
|
|
|
import React from 'react';
|
2020-07-22 10:49:22 +00:00
|
|
|
import { Grommet } from 'grommet';
|
|
|
|
|
|
|
|
const theme = {
|
|
|
|
global: {
|
|
|
|
font: {
|
|
|
|
family: 'Roboto',
|
|
|
|
size: '18px',
|
|
|
|
height: '20px',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
2020-07-22 09:57:07 +00:00
|
|
|
|
|
|
|
function App() {
|
|
|
|
return (
|
2020-07-22 10:49:22 +00:00
|
|
|
<Grommet theme={theme}>
|
2020-07-22 09:57:07 +00:00
|
|
|
<h1>Spoti Search</h1>
|
2020-07-22 10:49:22 +00:00
|
|
|
</Grommet>
|
2020-07-22 09:57:07 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default App;
|