import { Layout, Row } from 'antd'; import DeviceArea from './DeviceArea'; import ContentAreaSmall from './ContentAreaSmall'; const SmallScreen = ({ className }: { className?: string }) => { console.log('SmallScreen component rendered'); return ( ); }; export default SmallScreen;