move move frontend to progress-test

This commit is contained in:
João Geonizeli
2022-07-21 21:16:59 -03:00
parent f8d5d08447
commit 386050d4ad
129 changed files with 159374 additions and 39 deletions

View File

@@ -0,0 +1,19 @@
import React, { FC } from "react";
import styled from "styled-components";
const StyledInputGroup = styled.div`
&:first-of-type {
margin-top: 0
}
&:last-of-type {
margin-bottom: 0
}
`;
type Props = {
children?: any
}
export const InputGroup: FC<Props> = ({ children }) => (
<StyledInputGroup className="mt-4 mb-2">{children}</StyledInputGroup>
);

View File

@@ -0,0 +1 @@
export { InputGroup } from "./InputGroup";