Rename tabs to Inbox, Contacts, Insights

This commit is contained in:
Charles Bochet
2022-12-05 21:47:11 +01:00
parent dcfc4c9e45
commit 92267701ff
20 changed files with 52 additions and 52 deletions

View File

@ -0,0 +1,17 @@
import styled from '@emotion/styled';
const StyledHeader = styled.div`
display: flex;
font-weight: bold;
align-items: center;
padding: 16px 24px;
font-size: 18px;
letter-spacing: 1px;
border-bottom: 1px solid #eaecee;
`;
function TaskListHeader() {
return <StyledHeader>6 tasks waiting</StyledHeader>;
}
export default TaskListHeader;