Skip to content
Snippets Groups Projects
Select Git revision
  • bba8900df26e879e41e21ea4383e6c76f724cbf2
  • master default protected
2 results

patternTitle.js

Blame
  • Forked from SOFT Core / SOFT 260 / React Redux Starter Code
    Source project has a limited visibility.
    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,
      };