Skip to content
Snippets Groups Projects
user-not-found.tsx 194 B
Newer Older
export const UserNotFound = () => {
    return (
        <div className="">
            <h1>This account does not exist.</h1>
            <p>Try searching for another.</p>
        </div>
    )
}