| 12345678910111213141516171819 |
- import React from 'react';
- //import PropTypes from 'prop-types';
- //import SectionLoader from '../Loader/SectionLoader';
- import { Box } from '@mui/system';
-
- const HomeListCard = () => {
- return (
- <Box> Title </Box>
- );
- };
-
- // AuthCard.propTypes = {
- // children: PropTypes.node,
- // title: PropTypes.string,
- // subtitle: PropTypes.string,
- // isLoading: PropTypes.bool,
- // };
-
- export default HomeListCard;
|