Select Git revision
comments.test.js
patternTitle.js 234 B
import React from 'react';
import PropTypes from 'prop-types';
export function Title(props) {
return (
<h1>
{props.title}:
</h1>
)
}
Title.propTypes = {
title: PropTypes.string.isRequired,
};