1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-ioc/components/endbutton.js
Alex Indigo e401e2cf5f Added IoC example (#3595)
* Added `with-ioc` example

* pre-compile deps until we get nextjs magic working
2018-01-31 08:36:20 +01:00

24 lines
661 B
JavaScript

import React from 'react'
import { inject } from 'ioc'
import PropTypes from 'prop-types'
@inject({
Router: PropTypes.object
})
export default class extends React.Component {
render () {
const { Router } = this.props
return (
<div style={{ marginTop: '5px', border: '1px dashed #00ff00', padding: '10px' }}>
<h3>EndButton</h3>
Uses injected `Router` component without direct dependency on one
<br />
<button onClick={() => Router.pushRoute('about', { foo: 'bar' })}>Route to About foo bar</button>
<br />
<button onClick={() => Router.pushRoute('/')}>go Home</button>
</div>
)
}
}