import React from 'react' import Link from 'next/link' const Result = ({result}) => { const {title, heading, writer, page} = result return (

{heading}

"{title}" - {writer} - str. {page}.

) } export default Result