jobiqo-cl
Version:
[](https://circleci.com/gh/jobiqo/jobiqo-cl)
28 lines (22 loc) • 694 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }
var styled = require('styled-components');
var styled__default = _interopDefault(styled);
/**
* @file index.tsx
*
* @fileoverview Generates a component that displays information on the middle of the page.
*/
/**
* Generates a component that displays information
* on the middle of the page.
*/
const CenterBox = styled__default.div `
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 80vh;
`;
exports.CenterBox = CenterBox;