UNPKG
react-mosaic-component2
Version:
latest (7.0.2)
7.0.2
7.0.1
7.0.0
6.9.0
6.8.13
6.8.12
6.8.11
6.8.10
6.8.9
6.8.8
6.8.7
6.8.5
6.8.4
6.8.3
6.8.2
6.8.1
6.8.0
6.7.0
6.6.0
6.5.0
6.4.0
6.3.0
6.2.0
A React Tiling Window Manager
github.com/nomcopter/react-mosaic
nomcopter/react-mosaic
react-mosaic-component2
/
buttons
/
Separator.mjs
11 lines
(10 loc)
•
235 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
// src/buttons/Separator.tsx
import
React
from
"react"
;
var
Separator
=
class
extends
React
.
PureComponent
{
render
(
) {
return
/* @__PURE__ */
React
.
createElement
(
"div"
, {
className
:
"separator"
}); } };
export
{
Separator
};