import React from 'react'; import PageBanner from '@/components/Common/PageBanner'; import BlogSidebar from '@/components/Blog/BlogSidebar'; import * as Icon from 'react-feather'; import Link from 'next/link'; import ReactHtmlParser from "react-html-parser"; const News = function ({ backend, news, othernews, ...props }) { const NewsList = news.map((data) => { return ( <>
image

{data.title}

{ReactHtmlParser(data.description)}

{/*

It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.

Tom Cruise
*/}
Motor Services Sparepart Event Promo
) }) const PopularNews = othernews.map((data) => { return (

{data.title}

) }) return (
{NewsList}

2 Comments:

  1. image John Jones says:
    April 24, 2019 at 10:59 am

    Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen.

    1. image Steven Smith says:
      April 24, 2019 at 10:59 am

      Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen.

      1. image Sarah Taylor says:
        April 24, 2019 at 10:59 am

        Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen.

  2. image John Doe says:
    April 24, 2019 at 10:59 am

    Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen.

    1. image James Anderson says:
      April 24, 2019 at 10:59 am

      Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen.

Leave a Reply

Your email address will not be published. Required fields are marked *

) } export default News;