UNPKG
cra-template-orainz
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Orainz base cra template
cra-template-orainz
/
template
/
src
/
components
/
header
/
Header.js
12 lines
(9 loc)
•
214 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
React
from
'react'
const
Header
= (
) => {
return
(
<
div
className
=
"bg-dark text-white shadow-sm py-3 pl-3"
>
<
h4
>
Orainz Header
</
h4
>
</
div
>
) }
export
{
Header
}