6 lines
88 B
JavaScript
6 lines
88 B
JavaScript
|
|
function EnclosedArea(props) {
|
||
|
|
return props.children;
|
||
|
|
}
|
||
|
|
|
||
|
|
export default EnclosedArea;
|