add BackProject initial grid

This commit is contained in:
Barry Gitarts 2019-03-05 16:03:45 -05:00 committed by Barry G
parent 5e52dd2ce7
commit 602e32b68c
1 changed files with 24 additions and 3 deletions

View File

@ -1,11 +1,32 @@
import React, { useMemo, useState, useEffect } from 'react' import React, { useMemo, useState, useEffect } from 'react'
import { withStyles } from '@material-ui/core/styles'
function BackProject({match}) { const styles = theme => ({
root: {
display: 'grid',
gridTemplateColumns: 'repeat(12, [col] 1fr)',
gridTemplateRows: 'repeat(5, [row] auto)',
gridColumnGap: '1em',
gridRowGap: '36px',
margin: '1.75rem 4.5rem',
fontFamily: theme.typography.fontFamily
},
title: {
fontSize: '2.5rem',
gridColumnStart: '3',
gridColumnEnd: '10'
}
})
function BackProject({classes, match}) {
const projectId = match.params.id const projectId = match.params.id
console.log({projectId}) console.log({projectId})
return ( return (
<div>Back Project Page</div> <div className={classes.root}>
<div className={classes.title}>Back Project Page</div>
</div>
) )
} }
export default BackProject const StyledProject = withStyles(styles)(BackProject)
export default StyledProject