mirror of
https://github.com/anidl/multi-downloader-nx.git
synced 2026-04-25 18:22:51 +00:00
11 lines
No EOL
214 B
TypeScript
11 lines
No EOL
214 B
TypeScript
import { Box } from '@mui/material';
|
|
import React from 'react';
|
|
import Queue from './Queue/Queue';
|
|
|
|
const MainFrame: React.FC = () => {
|
|
return <Box sx={{ }}>
|
|
<Queue />
|
|
</Box>;
|
|
};
|
|
|
|
export default MainFrame; |