aura-web/src/pages/PointsMallPage/components/PointsMallPageWebTablet.tsx

7 lines
304 B
TypeScript

import type { PointsMallPageLogicOutput } from '../PointsMallPageLogic';
import PointsMallPageWebBase from './PointsMallPageWebBase';
export default function PointsMallPageWebTablet({ logic }: { logic: PointsMallPageLogicOutput }) {
return <PointsMallPageWebBase logic={logic} viewport="tablet" />;
}