@pagamio/frontend-commons-lib
Version:
Pagamio library for Frontend reusable components like the form engine and table container
13 lines (12 loc) • 369 B
TypeScript
import React from 'react';
interface Content {
id: number;
label: string;
content: React.ReactNode;
}
interface VerticalTabsLayoutProps {
content: Content[];
}
declare const VerticalTabsLayout: ({ content }: VerticalTabsLayoutProps) => import("react/jsx-runtime").JSX.Element;
export default VerticalTabsLayout;
export type { VerticalTabsLayoutProps };