import React from 'react'; import { Helmet } from 'react-helmet'; import brand from 'ba-api/brand'; import imgData from 'ba-api/imgDataMasonry'; import { PhotoGallery } from 'ba-components'; class Photos extends React.Component { render() { const title = brand.name + ' - Photo Gallery'; const description = brand.desc; return (
{title}
); } } export default Photos;