Files
flipper/src/ui/components/FlexColumn.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

17 lines
383 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 FlexBox from './FlexBox.js';
import styled from '../styled/index.js';
/**
* A container displaying its children in a column
*/
export default styled(FlexBox)({
flexDirection: 'column',
});