web3portal / Screen.jsx
web3district's picture
Add Screen React component
e3b8334 verified
import React from 'react';
const styles = {
Screen: {
backgroundColor: '#1c1c1c',
},
};
const Screen = (props) => {
return (
<div style={styles.Screen}>
{props.children}
</div>
);
};
export default Screen;