/ concept-collection / ephys_compression_tests
Sign in
concept-collection / ephys_compression_tests
ephys_compression_tests / web-ui / src / pages / Submit.tsx
14 lines · 400 BBlameHistoryRaw
1import submitContent from "./submit.md?raw";
2import ReactMarkdown from "react-markdown";
3import remarkMath from "remark-math";
4import rehypeKatex from "rehype-katex";
6export default function Submit() {
7 return (
8 <div className="content-container">
9 <ReactMarkdown remarkPlugins={[remarkMath]} rehypePlugins={[rehypeKatex]}>
10 {submitContent}
11 </ReactMarkdown>
12 </div>
13 );
moveopenescclose