As a common practice, the props object will be re-assigned to local variables for better readability:
const BlogList = (props) => {
const blogs = props.blogs;
const title = props.title;
Or more commonly they will be destructured using this syntax:
const BlogList = ({ blogs, title }) => {