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