import {withRouter} from 'next/router' import dynamic from 'next/dynamic' import Link from 'next/link' const RustComponent = dynamic({ loader: async () => { // Import the wasm module const rustModule = await import('../add.wasm') // Return a React component that calls the add_one method on the wasm module return (props) =>