@upv/react-ui-core
Version:
**USHI Design System — Modern UI Component Library**
14 lines (13 loc) • 334 B
TypeScript
import React from "react";
export type LegalSection = {
heading: string;
content: React.ReactNode;
};
interface LegalPageLayoutProps {
title: string;
lastUpdated?: string;
sections?: LegalSection[];
children?: React.ReactNode;
}
export declare const LegalPageLayout: React.FC<LegalPageLayoutProps>;
export {};