6 lines
112 B
TypeScript
6 lines
112 B
TypeScript
|
import React from "react";
|
||
|
|
||
|
export const AuthenticationPage = () => {
|
||
|
return <>The Authentication Page</>;
|
||
|
};
|