UNPKG
@carbonare/page-header
Version:
latest (0.1.3)
0.1.3
0.1.2
0.1.0
Page Header component for Carbon Design System
@carbonare/page-header
/
lib
/
PageHeader.js.flow
11 lines
(10 loc)
•
278 B
Flow
View Raw
1
2
3
4
5
6
7
8
9
10
11
// @flow
import
*
as
React
from
"react"
;
import
{
Row
,
Column
}
from
"@carbonare/grid"
;
type
Props
= {
title
:
string
,
subtitle
?:
string
|
React
.
Node
,
helptext
?:
string
|
React
.
Node
, };
// Component
declare
var
PageHeader
:
(
props
:
Props
) =>
any
;
export
default
PageHeader
;