forked from VinokurovVE/tests
12 lines
292 B
TypeScript
12 lines
292 B
TypeScript
import { Flex } from '@mantine/core'
|
|
import ServerHardware from '../components/ServerHardware'
|
|
|
|
const ComponentTest = () => {
|
|
return (
|
|
<Flex direction='column' align='flex-start' gap='sm' p='sm'>
|
|
<ServerHardware />
|
|
</Flex>
|
|
)
|
|
}
|
|
|
|
export default ComponentTest |