UNPKG

@hmlr/govuk-react-components-library

Version:

These are common component use for React applications based on GDS and govuk-frontend

11 lines (10 loc) 278 B
import React from "react"; export interface WithRefProps { Component: React.ComponentType<unknown>; [key: string]: unknown; } export interface InfoSectionProps { refName: string; Component: React.ComponentType<unknown>; restProps: Record<string, unknown>; }