Summary: Typos. Reviewed By: danielbuechele Differential Revision: D13625458 fbshipit-source-id: a2885fda1a27ab5c305445d54e1221cec215a16b
19 lines
444 B
JavaScript
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',
|
|
});
|