mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
18 lines
349 B
JavaScript
18 lines
349 B
JavaScript
// @flow
|
|
import * as React from 'react';
|
|
import styled from 'styled-components';
|
|
|
|
const Cards: React.ComponentType<{}> = styled.div`
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
padding-top: var(--padding-md);
|
|
`;
|
|
|
|
class CardContainer extends React.PureComponent<{}> {
|
|
render() {
|
|
return <Cards {...this.props} />;
|
|
}
|
|
}
|
|
|
|
export default CardContainer;
|