new devices system prototype
This commit is contained in:
16
app/components/DeviceVerify/DeviceVerify.tsx
Normal file
16
app/components/DeviceVerify/DeviceVerify.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import { DeviceEntry } from "@/app/providers/ProtocolProvider/protocol/packets/packet.device.list";
|
||||
import { Flex, Text } from "@mantine/core";
|
||||
|
||||
export interface DeviceVerifyProps {
|
||||
device: DeviceEntry;
|
||||
}
|
||||
|
||||
export function DeviceVerify(props: DeviceVerifyProps) {
|
||||
return (
|
||||
<Flex>
|
||||
<Text>
|
||||
New login from {props.device.deviceName}
|
||||
</Text>
|
||||
</Flex>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user