pricing-table-react
Version:
A simple pricing plan for react
19 lines (15 loc) • 352 B
text/typescript
import Plan from "./components/Plan/Plan";
export {Plan};
interface PlanAdvantage {
text: string;
}
export interface PlanProps {
title: string;
titleDescription?: String;
duration?: string;
highlightText?: string;
price: string;
guarantee?: string;
href: string;
advantages?: PlanAdvantage[];
}