add Operation Summary Page

This commit is contained in:
Alex Santos 2022-05-10 15:14:26 -03:00
parent ff53d07abf
commit 0e3cf4161d
2 changed files with 10 additions and 1 deletions

View File

@ -1,4 +1,5 @@
import React from 'react'; import React from 'react';
import BasicButton from '../src/components/buttons/basicButton/BasicButton';
import Sidebar from '../src/components/sidebar/Sidebar'; import Sidebar from '../src/components/sidebar/Sidebar';
import { TableView} from '../styles/layouts/resumoOperacao/ResumoOperacaoView'; import { TableView} from '../styles/layouts/resumoOperacao/ResumoOperacaoView';
@ -77,8 +78,11 @@ export default function ResumoOperacao() {
</tbody> </tbody>
</table> </table>
<BasicButton title='Enviar PDF' />
<p>Mostando de 1 a 10 de 30 Entradas</p>
</TableView> </TableView>
) )
} }

View File

@ -2,7 +2,7 @@ import styled from 'styled-components'
export const TableView = styled.div` export const TableView = styled.div`
display: flex; display: flex;
padding: 2.5rem; padding: 2.5rem;
justify-content: center; justify-content: center;
flex-direction: column; flex-direction: column;
@ -138,4 +138,9 @@ h1{
font-size: 15px; font-size: 15px;
margin-top: 5rem; margin-top: 5rem;
} }
p{
margin-top: 4rem;
}
`; `;