UNPKG
@wq/material-web
Version:
latest (2.1.0)
next (3.0.0-alpha.0)
3.0.0-alpha.0
2.1.0
2.0.0
2.0.0-alpha.2
2.0.0-alpha.1
2.0.0-alpha.0
Web bindings for @wq/material
wq.io/@wq/material
wq/wq.app
@wq/material-web
/
src
/
components
/
View.js
7 lines
(5 loc)
•
179 B
JavaScript
View Raw
1
2
3
4
5
6
7
import
React
from
"react"
;
import
{
Box
}
from
"@mui/material"
;
export
default
function
View
(
props
) {
return
<
Box
{
...props
}
sx
=
{{
position:
"
relative
",
...props.sx
}} />
; }