Advertisement
robertvari

Class based component

Feb 18th, 2020
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import React, {Component} from "react";
  2.  
  3. class BlogList extends Component {
  4.     render() {
  5.         return (
  6.             <div className="top_center">
  7.                 Blog List component wdw
  8.             </div>
  9.         )
  10.     }
  11. }
  12.  
  13. export default BlogList
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement