import React from 'react'; import Link from 'next/link' import BlogSidebar from '../BlogSidebar/BlogSidebar.js' import VideoModal from '../ModalVideo/VideoModal' import blogs from '../../api/blogs' import Image from 'next/image.js'; const ClickHandler = () =>{ window.scrollTo(10, 0); } const BlogList2 = (props) => { return(
{blogs.map((blog, bitem) => (
  • By {blog.authorTitle}
  • Comments {blog.comment}
  • {blog.create_at}

{blog.title}

Law is a great career path if you want to build a broad skill set that includes everything from critical thinking and strategic planning to communications. If you love rising to a challenge.

READ MORE...
))}
  • 1
  • 2
  • 3
) } export default BlogList2;