import React from 'react'; import Alert from '@mui/material/Alert'; import AlertTitle from '@mui/material/AlertTitle'; import {useRouter} from 'next/router' function BackLinks({linkList}) { return (

Link to this note

{(linkList != null && linkList.length > 0) ? <>
{linkList.map(aLink =>
{/**/}

{aLink.title}

{aLink.shortSummary}

{/**/}
)}
: <>

No backlinks found

}
); } 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;