Files
flipper/src/ui/components/FlexCenter.js
Daniel Tse 0033de50ae Fixed typos in Flex* component documentation
Summary: Typos.

Reviewed By: danielbuechele

Differential Revision: D13625458

fbshipit-source-id: a2885fda1a27ab5c305445d54e1221cec215a16b
2019-01-11 02:58:16 -08:00

19 lines
444 B
JavaScript

/**
* Copyright 2018-present Facebook.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
* @format
*/
import View from './View.js';
import styled from '../styled/index.js';
/**
* A container displaying its children horizontally and vertically centered.
*/
export default styled(View)({
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
});