add section header

This commit is contained in:
Colin Megill
2017-10-09 22:17:48 -07:00
parent 88cb4ef4ac
commit ec8dc69112
4 changed files with 21 additions and 3 deletions
+12
View File
@@ -0,0 +1,12 @@
import React from 'react';
const SectionHeader = ({text}) => (
<p style={{
fontSize: 32,
fontWeight: 700
}}>
{text}
</p>
);
export default SectionHeader;