Added ability to visit a user's profile page from their stream; Cleaned up code formatting, primarily changing from single quotes to double quotes; Removed unused SignupForm component;
8 lines
122 B
TypeScript
8 lines
122 B
TypeScript
import React from "react";
|
|
|
|
const NotFoundPage: React.FC = () => {
|
|
return <div></div>;
|
|
};
|
|
|
|
export default NotFoundPage;
|