import React, { Component } from 'react'; import { ThemeContext } from './context/ThemeContexts'; class Title extends Component { static contextType = ThemeContext; render() { const { theme } = this.context; const { name, title } = this.props; return (

{name}{' '} {title}

); } } export default Title;