Skip to content

Commit 3bc4a1a

Browse files
lcustodiodanilowoz
authored andcommitted
fix(build): fix invalid syntax that broke build (danilowoz#17)
The build and `npm install` were breaking. In addition npm start to put a deprecation message regarding `prepublish` scripts.
1 parent 6f7e55f commit 3bc4a1a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/stylized/CodeStyle.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import React from 'react'
22
import Wrap from '../Wrap'
33

4-
const CodeStyle = props =>
5-
return (
4+
const CodeStyle = props => {
5+
return (
66
<Wrap {...props}>
77
<rect x="0" y="0" rx="3" ry="3" width="70" height="10" />
88
<rect x="80" y="0" rx="3" ry="3" width="100" height="10" />

0 commit comments

Comments
 (0)