13 lines
251 B
JavaScript
13 lines
251 B
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
const Screen = ({ children }) => (
|
|
<div className="fullscreen-preview">
|
|
{children}
|
|
</div>
|
|
);
|
|
Screen.propTypes = {
|
|
children: PropTypes.node.isRequired
|
|
};
|
|
|
|
export default Screen;
|