import React from "react"; type Props = { readonly className: string; readonly text: string; readonly id?: string; readonly color?: string; }; export const Body = ({ className, text, id, color }: Props) => { return (

{text}

); };