mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-21 16:23:36 -05:00
15 lines
342 B
JavaScript
15 lines
342 B
JavaScript
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;
|