31
loading...
This website collects cookies to deliver better user experience
// in your terminal, run
npm install
// then to view our website in the browser, run
npm start
// with npm
npm install @mui/material @emotion/react @emoticon/styled
// with yarn
yarn add @mui/material @emotion/react @emoticon/styled
import { makeStyles } from '@material-ui/core'
const useStyles = makeStyles ({
page: {
margin: '10px',
display: 'flex',
paddingLeft: 200,
paddingTop: 70
}
});
function AlbumCards ({ props }) {
const one, two = props
const classes = useStyles()
return (
<div className={classes.page}>
<Box>
<Grid item xs={12}>
<Card variant='elevation'>
<CardHeader
title={one}
subheader={two}
/>