UNPKG
react-table-pro
Version:
latest (0.0.8)
0.0.8
0.0.7
0.0.6
0.0.5
0.0.3
0.0.1
React Table Pro
github.com/webbestmaster/react-table-pro
webbestmaster/react-table-pro
react-table-pro
/
src
/
table
/
table-header
/
c-table-header.js
16 lines
(10 loc)
•
251 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// @flow
import
React
from
'react'
;
// import tableHeaderStyle from './table-header.scss';
type
PropsType
= {| +
title
:
React
$Node, |};
export
function
TableHeader
(
props: PropsType
):
React
$Node {
const
{title} = props;
return
title; }