jsketcher/modules/ui/components/Card.jsx
2018-01-17 00:06:31 -08:00

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>
}