12 lines
164 B
TypeScript
12 lines
164 B
TypeScript
|
import { Raw } from '~/components/MongoDB/Raw';
|
||
|
|
||
|
export default function login() {
|
||
|
const template = (
|
||
|
<>
|
||
|
<Raw></Raw>
|
||
|
</>
|
||
|
);
|
||
|
|
||
|
return template;
|
||
|
}
|