-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add Activities button and view to workspace
- Loading branch information
1 parent
02bae78
commit 1e45b6a
Showing
3 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
src/people/widgetViews/workspace/Activities/Activities.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import React from 'react'; | ||
import styled from 'styled-components'; | ||
|
||
const Container = styled.div` | ||
padding: 20px; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
min-height: 200px; | ||
`; | ||
|
||
const Text = styled.h1` | ||
color: #333; | ||
font-size: 24px; | ||
text-align: center; | ||
`; | ||
|
||
const Activities = () => ( | ||
<Container> | ||
<Text>Activities View - Coming Soon!</Text> | ||
</Container> | ||
); | ||
|
||
export default Activities; |