Skip to content

Commit 01eb926

Browse files
committed
Edit demo
1 parent d185b57 commit 01eb926

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11

22
dist
3+
demo/bundle.js

demo/App.js

+6-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,12 @@ import Grid from '../src/Grid'
55
class App extends React.Component {
66
render () {
77
return (
8-
<div className=''>
9-
<h1 className='p3'>React CSS Grid</h1>
10-
<div>
8+
<div>
9+
<header className='p3'>
10+
<h1>React CSS Grid Demo</h1>
11+
<a href='https://github.com/jxnblk/react-css-grid'>GitHub</a>
12+
</header>
13+
<div className='debug'>
1114
<Grid className='p3' sm={6} md={3}>
1215
<h2 className='m0'>sm6 md3</h2>
1316
</Grid>

demo/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
outline: 1px solid rgba(255, 0, 255, .5);
1515
}
1616
</style>
17-
<div id='app' class='debug'></div>
17+
<div id='app'></div>
1818
<script src='bundle.js'></script>

0 commit comments

Comments
 (0)