UNPKG

react-with-breakpoints

Version:

Utility React component for altering the visual experience of responsive and lean webpages.

9 lines (8 loc) 262 B
import * as React from 'react'; import { BreakpointEdge } from './utils'; interface ShowAtProps { breakpoint: BreakpointEdge; children?: React.ReactNode; } export declare const ShowAt: React.FunctionComponent<ShowAtProps>; export default ShowAt;