-
-
Notifications
You must be signed in to change notification settings - Fork 454
Expand file tree
/
Copy pathTabPanel.jsx
More file actions
48 lines (43 loc) · 946 Bytes
/
TabPanel.jsx
File metadata and controls
48 lines (43 loc) · 946 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import React from 'react';
import cx from 'clsx';
const DEFAULT_CLASS = 'react-tabs__tab-panel';
/*
Left for TS migration
const propTypes = {
children: PropTypes.node,
className: PropTypes.oneOfType([
PropTypes.string,
PropTypes.array,
PropTypes.object,
]),
forceRender: PropTypes.bool,
id: PropTypes.string, // private
selected: PropTypes.bool, // private
selectedClassName: PropTypes.string,
};
*/
const TabPanel = ({
children,
className = DEFAULT_CLASS,
forceRender = false,
selectedClassName = `${DEFAULT_CLASS}--selected`,
id,
selected,
...attributes
}) => {
return (
<div
{...attributes}
className={cx(className, {
[selectedClassName]: selected,
})}
role="tabpanel"
id={`panel${id}`}
aria-labelledby={`tab${id}`}
>
{forceRender || selected ? children : null}
</div>
);
};
TabPanel.tabsRole = 'TabPanel';
export default TabPanel;