Skip to content

Commit

Permalink
add new example
Browse files Browse the repository at this point in the history
  • Loading branch information
lopez-alex committed Mar 6, 2018
1 parent 1ec5ad1 commit 0be245e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions packages/blueprint/index.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
import dom from 'jsx-render'
import Headline from './headline'

const items = [1,2,3,4]
function Main() {
return (
<div>
<Headline />
<p>Lorem ipsum</p>
<ul>
<li><a href="">anchor</a></li>
<li>2</li>
<li><a href="">anchor2</a> More</li>
</ul>
<ol>
{items.map(item => <li>{item}</li>)}
</ol>
</div>
)
}
Expand Down

0 comments on commit 0be245e

Please sign in to comment.