import React from 'react'; import Alert from '@mui/material/Alert'; import AlertTitle from '@mui/material/AlertTitle'; import {useRouter} from 'next/router' import {Transformer} from "../lib/transformer"; function MDContent({content,fileNames, handleOpenNewContent}) { function handleInternalLinkClick() { //Processing fetching //pass result up to parent container //TODO: handle clicking on internal link, go fetching md content from file then passing it up to parent handleOpenNewContent(content) } const router = useRouter(); return (