import React from "react"; import { Box, Typography } from "@mui/material"; type ArticleProps = { header: JSX.Element; body: JSX.Element; isBoby?: boolean; }; export const Article = ({ header, body, isBoby = false }: ArticleProps) => { return ( {header} {isBoby ? {body} : } ); };