mirror of
https://github.com/HSLdevcom/digitransit-ui
synced 2025-09-21 22:02:50 +02:00
8 lines
247 B
JavaScript
8 lines
247 B
JavaScript
import PropTypes from 'prop-types';
|
|
import React from 'react';
|
|
|
|
const TitleComponent = (props, { config: { title } }) => <span>{title}</span>;
|
|
|
|
TitleComponent.contextTypes = { config: PropTypes.object.isRequired };
|
|
|
|
export default TitleComponent;
|