Skip to content

Commit

Permalink
fix(build): fix invalid syntax that broke build (#17)
Browse files Browse the repository at this point in the history
The build and `npm install` were breaking.
In addition npm start to put a deprecation message regarding `prepublish` scripts.
  • Loading branch information
lcustodio authored and danilowoz committed Sep 14, 2017
1 parent 6f7e55f commit 3bc4a1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stylized/CodeStyle.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from 'react'
import Wrap from '../Wrap'

const CodeStyle = props =>
return (
const CodeStyle = props => {
return (
<Wrap {...props}>
<rect x="0" y="0" rx="3" ry="3" width="70" height="10" />
<rect x="80" y="0" rx="3" ry="3" width="100" height="10" />
Expand Down

0 comments on commit 3bc4a1a

Please sign in to comment.