Skip to content

Commit

Permalink
Intro: get rid of unneeded extra wrapper div
Browse files Browse the repository at this point in the history
  • Loading branch information
chadoh committed Oct 11, 2017
1 parent d18b8ab commit 03deea8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 2 additions & 1 deletion packages/thicket-intro/src/App/GifCreator/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,11 @@ export default class GifCreator extends React.Component {
goOffline = () => this.setState({ online: false })

render() {
const { id } = this.props
const { online } = this.state

return (
<Wrapper>
<Wrapper id={id}>
<Explanation>
<img src={noWifi} alt="" style={{ height: '2.5em' }}/>
<h2>Let's get started. Turn off that WiFi!</h2>
Expand Down
4 changes: 1 addition & 3 deletions packages/thicket-intro/src/App/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ injectGlobal`

export default () => [
<Hero key="hero" scrollTo="#create" />,
<div key="create" id="create">
<GifCreator />
</div>,
<GifCreator key="create" id="create" />,
]

0 comments on commit 03deea8

Please sign in to comment.