point-of-sales/pos-frontend/app/about/page.tsx

13 lines
195 B
TypeScript

'use client'
import React from "react"
import { Box } from '@chakra-ui/react'
export default function Page() {
(
<Box color={"black"}>
About
The stuff is here
</Box>
)
}