UNPKG

@pagamio/frontend-commons-lib

Version:

Pagamio library for Frontend reusable components like the form engine and table container

9 lines (8 loc) 267 B
import React from 'react'; interface AppPageHeaderProps { title: string; description?: string; } declare const AppPageHeader: ({ title, description }: AppPageHeaderProps) => React.JSX.Element; export default AppPageHeader; export type { AppPageHeaderProps };