mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 10:46:13 +02:00
18 lines
313 B
JavaScript
18 lines
313 B
JavaScript
import React from 'react';
|
|
|
|
const Frame = ({ children }) => {
|
|
return (
|
|
<div
|
|
className="ba b--black-30 br2"
|
|
style={{
|
|
height: '100px',
|
|
width: '100px',
|
|
}}
|
|
>
|
|
{children}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Frame;
|