export interface Props { vertical?: boolean, className?: string, flow?: "start" | "end" | "spaceAround" | "spaceBetween" | "stretch", children?: any } const Container = ({ vertical, className, children, flow }: Props): JSX.Element => (
{ children }
) export default Container