Adds notification list to orgs

This commit is contained in:
mabashian
2019-01-21 13:13:09 -05:00
parent 3060abab1d
commit 58f99c8918
15 changed files with 870 additions and 80 deletions

View File

@@ -0,0 +1,14 @@
import React from 'react';
class CapitalizeText extends React.Component {
upperCaseFirstLetter = (string) => (typeof string === 'string' ? string.charAt(0).toUpperCase() + string.slice(1) : '');
render () {
const { text } = this.props;
return (
this.upperCaseFirstLetter(text)
);
}
}
export default CapitalizeText;