-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
SectionCompletedExamples.jsx
35 lines (31 loc) · 1.2 KB
/
SectionCompletedExamples.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import React from "react";
// @material-ui/core components
import withStyles from "@material-ui/core/styles/withStyles";
// @material-ui/icons
// core components
import GridContainer from "components/Grid/GridContainer.jsx";
import GridItem from "components/Grid/GridItem.jsx";
import completedStyle from "assets/jss/material-kit-react/views/componentsSections/completedStyle.jsx";
class SectionCompletedExamples extends React.Component {
render() {
const { classes } = this.props;
return (
<div className={classes.section}>
<div className={classes.container}>
<GridContainer justify="center">
<GridItem xs={12} sm={12} md={8}>
<h2>Completed with examples</h2>
<h4>
The kit comes with three pre-built pages to help you get started
faster. You can change the text and images and you're good to
go. More importantly, looking at them will give you a picture of
what you can built with this powerful kit.
</h4>
</GridItem>
</GridContainer>
</div>
</div>
);
}
}
export default withStyles(completedStyle)(SectionCompletedExamples);