hensei-web/src/routes/Party/Party.tsx
2020-09-11 09:08:48 -07:00

15 lines
No EOL
333 B
TypeScript

import React from 'react'
import {withRouter} from 'react-router'
class Party extends React.Component {
render() {
var hash = this.props.match.params.hash
return (
<div>
<h1>A specific party with hash: {hash}</h1>
</div>
)
}
}
export default withRouter(Party)