UNPKG

@mobily/stacks

Version:

⚡ A set of useful components to help you build and maintain React Native (Web too) layouts with ease.

13 lines (11 loc) 301 B
// @flow import type * as React from "react"; import type type { breakpoint as Breakpoint } from "./Stacks_types.gen"; export type Props = { +breakpoints?: Breakpoint[], +children: React.Node, +debug?: boolean, +spacing?: number, ... }; declare export var make: React.ComponentType<Props>;