mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 16:33:15 +01:00
16 lines
No EOL
299 B
JavaScript
16 lines
No EOL
299 B
JavaScript
import React from 'react';
|
|
|
|
export default function Card({visible, children, ...props}) {
|
|
return <div style={
|
|
{
|
|
display: visible ? 'block' : 'none',
|
|
position: 'absolute',
|
|
left: 0,
|
|
top: 0,
|
|
bottom: 0,
|
|
right: 0
|
|
}
|
|
} {...props}>
|
|
{children}
|
|
</div>
|
|
} |