7 lines
304 B
TypeScript
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" />;
|
|
}
|