import React, { useMemo, useState } from "react"; import { ModelBox } from "./style"; export default (props) => { const { title, children, style } = props; return (
{title}
{children}
); };