UNPKG
rstarter-supporthq
Version:
latest (1.0.0)
1.0.0
rstarter-supporthq
/
src
/
General
/
SectionHeader.js
8 lines
(7 loc)
•
206 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
React
from
'react'
;
const
SectionHeader
=(
props
)=>{
return
<
div
style
=
{{margin:
"
1rem
0
1rem
0
",
padding:
"
.5rem
"}}>
<
h6
>
{props.Title}
</
h6
>
</
div
>
}
export
default
SectionHeader
;