import React from "react"; import { ComparisonTableProps } from "./types"; import { Text } from "@shared/components/text"; export const ComparisonTable: React.FC = ({ title, disclaimer, table, maxWidth = true, }) => { return (
{title}
{table}
{disclaimer}
); };