forked from sjoerdapp/styleguide2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgetting_started.js
More file actions
28 lines (27 loc) · 1019 Bytes
/
Copy pathgetting_started.js
File metadata and controls
28 lines (27 loc) · 1019 Bytes
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
import React, {Component} from 'react';
import styles from '../index.styl';
import classNames from 'classnames/bind';
import Highlight from 'react-highlight.js'
import {Jumbotron} from '../../src/index';
const cx = classNames.bind(styles);
export default React.createClass({
render: function() {
return (
<div>
<Jumbotron title="Getting Started"/>
<div className={cx("content-styleguide")}>
<section>
<h2>Why Styleguide Boilerplate?</h2>
<p>Styleguide Boilerplate is a new new framework built with React to build web apps and websites. It has powerful features like flexbox based grid, </p>
</section>
<section>
<h2>Setting up</h2>
<p>Clone the repository to your computer. If you want more information read here.</p>
<Highlight language="terminal">npm install styleguide-boilerplate --save</Highlight>
<h4>Create a html</h4>
</section>
</div>
</div>
);
}
});