auto push
This commit is contained in:
@@ -1,8 +1,16 @@
|
||||
import { LayoutValidasi } from "@/app_modules/auth";
|
||||
import { ActionIcon, Button } from "@mantine/core";
|
||||
import Link from "next/link";
|
||||
import React from "react";
|
||||
|
||||
export default async function Layout({children}: {children: React.ReactNode}) {
|
||||
return<>
|
||||
<LayoutValidasi>{children}</LayoutValidasi>
|
||||
export default async function Layout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<>
|
||||
<LayoutValidasi>{children}</LayoutValidasi>
|
||||
</>
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,6 +1,16 @@
|
||||
"use client";
|
||||
|
||||
import { Box, Paper, SimpleGrid, Stack, Text, TextInput } from "@mantine/core";
|
||||
import {
|
||||
Box,
|
||||
Button,
|
||||
Center,
|
||||
Paper,
|
||||
SimpleGrid,
|
||||
Stack,
|
||||
Text,
|
||||
TextInput,
|
||||
Title,
|
||||
} from "@mantine/core";
|
||||
// import ViewMakuro from "./_server/makuro_view";
|
||||
// import mqtt_client from "@/util/mqtt_client";
|
||||
// import { useState } from "react";
|
||||
@@ -57,6 +67,19 @@ import { Box, Paper, SimpleGrid, Stack, Text, TextInput } from "@mantine/core";
|
||||
// );
|
||||
// }
|
||||
|
||||
export default function Page(){
|
||||
return null
|
||||
export default function Page() {
|
||||
return (
|
||||
<Stack>
|
||||
<Center>
|
||||
<Stack>
|
||||
<Title>LOGIN</Title>
|
||||
<TextInput />
|
||||
<TextInput />
|
||||
<TextInput />
|
||||
<TextInput />
|
||||
<Button>LOGIN</Button>
|
||||
</Stack>
|
||||
</Center>
|
||||
</Stack>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user