hensei-web/routes/NewRoute/index.tsx
2022-01-24 21:54:50 -08:00

22 lines
No EOL
520 B
TypeScript

import React from 'react'
import Party from '~components/Party'
const NewRoute: React.FC = () => {
function callback(path: string) {
// This is scuffed, how do we do this natively?
window.history.replaceState(null, `Grid Tool`, `${path}`)
}
return (
<div id="Content">
<Party
editable={true}
extra={false}
exists={false}
pushHistory={callback}
/>
</div>
)
}
export default NewRoute