Created
September 26, 2018 05:52
-
-
Save sarangkartikey50/09e83654951fdfe6121b47570d383c34 to your computer and use it in GitHub Desktop.
material-ui-grid-example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Grid container> | |
<Grid item container spacing={32}> | |
<Grid item xs={12}> | |
<Typography variant='display2' align='center'>Heading</Typography> | |
</Grid> | |
<Grid container> | |
<Grid item xs={5}> | |
<div> | |
<img | |
style={{height: '100%', width: '250px'}}src="https://www.google.co.in/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" /> | |
</div> | |
</Grid> | |
<Grid item xs={1}></Grid> | |
<Grid item xs={6}> | |
<Typography>Header</Typography> | |
<Typography>Like Material-UI? | |
If you don't mind tech-related ads, and want to support Open Source, please whitelist Material-UI in your ad blocker. | |
Thank you! ❤️</Typography> | |
</Grid> | |
</Grid> | |
</Grid> | |
</Grid> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment