wallet-core/packages/taler-wallet-webextension/src/mui/Grid.tsx

14 lines
281 B
TypeScript
Raw Normal View History

2022-03-09 18:00:02 +01:00
import { h, Fragment, VNode, ComponentChildren } from "preact";
export function Grid({}: {
container?: boolean;
wrap?: string;
item?: boolean;
spacing?: number;
alignItems?: string;
justify?: string;
children: ComponentChildren;
}): VNode {
return <Fragment />;
}