Skip to content

Commit

Permalink
(#5) Adicionando componente de Loading
Browse files Browse the repository at this point in the history
Co-authored-by: Emily Sousa <diassousa@yahoo.com.br>
  • Loading branch information
sergiosacj and emysdias committed Sep 17, 2021
1 parent e498eda commit f7e1cea
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
13 changes: 13 additions & 0 deletions frontend/src/components/Loading/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import React from "react";

import { LoadingContainer } from "components/Loading/styles";

const Loading: React.FC = ({}) => {
return (
<LoadingContainer>
<h1>loading...</h1>
</LoadingContainer>
);
};

export default Loading;
5 changes: 5 additions & 0 deletions frontend/src/components/Loading/styles.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import styled from "styled-components";

export const LoadingContainer = styled.div`
text-align: center;
`;

0 comments on commit f7e1cea

Please sign in to comment.