Flex components
Summary: _typescript_ Reviewed By: passy Differential Revision: D16830540 fbshipit-source-id: 43741df5844a9f33930af8846cfcb2b28c9c6278
This commit is contained in:
committed by
Facebook Github Bot
parent
2520ad4cea
commit
c9260cca33
16
src/ui/components/FlexColumn.tsx
Normal file
16
src/ui/components/FlexColumn.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* 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';
|
||||
import styled from 'react-emotion';
|
||||
|
||||
/**
|
||||
* A container displaying its children in a column
|
||||
*/
|
||||
export default styled(FlexBox)({
|
||||
flexDirection: 'column',
|
||||
});
|
||||
Reference in New Issue
Block a user