7 lines
174 B
TypeScript
7 lines
174 B
TypeScript
import { Box } from '@mantine/core';
|
|
import { FC } from 'react';
|
|
|
|
export const ComicView: FC = () => {
|
|
return <Box w="100%" h="100%" sx={{ overflow: 'hidden' }}></Box>;
|
|
};
|