pineafan | c540da9 | 2021-09-03 20:33:36 +0100 | [diff] [blame] | 1 | import { Component } from 'react'; |
2 | |||||
3 | class Paragraph extends Component { | ||||
4 | render () { | ||||
5 | return ( | ||||
6 | <p style={{width: "100%", textAlign: "left", paddingLeft: "15%", paddingRight: "15%", fontSize: "120%"}}>{this.props.children}</p> | ||||
7 | ); | ||||
8 | } | ||||
9 | } | ||||
10 | |||||
11 | export default Paragraph; |