Rename tabs to Inbox, Contacts, Insights
This commit is contained in:
17
front/src/pages/inbox/TaskListHeader.tsx
Normal file
17
front/src/pages/inbox/TaskListHeader.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user