diff --git a/pages/new/index.tsx b/pages/new/index.tsx new file mode 100644 index 00000000..9ac20b2c --- /dev/null +++ b/pages/new/index.tsx @@ -0,0 +1,22 @@ +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 ( +
+ +
+ ) +} + +export default NewRoute \ No newline at end of file