aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/mui/Grid.tsx
blob: 3974e3c2e29e9d21c16dd8ec92faa3839c574a14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 />;
}