pricing-table-react
Version:
A simple pricing plan for react
16 lines (15 loc) • 348 B
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[];
}