{children}
);
},
};
function Readme({ style }: { style: React.CSSProperties }) {
const [markdown, setMarkdown] = useState("");
useEffect(() => {
fetch(readmeContent)
.then((response) => response.text())
.then((text) => setMarkdown(text));
}, []);
return (