SmallScreen.tsx 497 B

12345678910111213141516171819
  1. import { Layout, Row } from 'antd';
  2. import DeviceArea from './DeviceArea';
  3. import ContentAreaSmall from './ContentAreaSmall';
  4. const SmallScreen = ({ className }: { className?: string }) => {
  5. console.log('SmallScreen component rendered');
  6. return (
  7. <Layout className={`'border border-blue-400' ${className} w-full`}>
  8. <Row>
  9. <DeviceArea />
  10. </Row>
  11. <Row>
  12. <ContentAreaSmall className=" w-full" />
  13. </Row>
  14. </Layout>
  15. );
  16. };
  17. export default SmallScreen;