import React from 'react'; import Alert from '@mui/material/Alert'; import AlertTitle from '@mui/material/AlertTitle'; import {useRouter} from 'next/router' import Link from 'next/link' function BackLinks({linkList}) { return (
{(linkList != null && linkList.length > 0) ? <>

Link to this note

{linkList.map(aLink =>
{/**/}

{aLink.title}

{aLink.shortSummary}

{/**/}
)}
: <>}
); } function MDContent({content, backLinks, 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) } useRouter(); return (
Want to know more? 🌱 Follow or DM me on Twitter at @tuancm
{/**/} {/*
*/}
); } export default MDContent;