Skip to main content
Module

x/jotai/website/src/pages/404.js

👻 Primitive and flexible state management for React
Go to Latest
File
import { useEffect } from 'react';import { navigate } from 'gatsby';
export default function NotFoundPage() { useEffect(() => { navigate('/'); }, []);
return null;}