hensei-web/src/routes/Party/Party.tsx
2020-09-17 00:02:48 -07:00

17 lines
No EOL
371 B
TypeScript

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