-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
39 additions
and
5 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
2 changes: 2 additions & 0 deletions
2
...ges/commonwealth/client/scripts/views/pages/RewardsPage/tables/QuestTable/QuestTable.scss
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,2 @@ | ||
.QuestTable { | ||
} |
7 changes: 7 additions & 0 deletions
7
...ages/commonwealth/client/scripts/views/pages/RewardsPage/tables/QuestTable/QuestTable.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,7 @@ | ||
import React from 'react'; | ||
|
||
import './QuestTable.scss'; | ||
|
||
export const QuestTable = () => { | ||
return <div className="QuestTable">Quest Table</div>; | ||
}; |
1 change: 1 addition & 0 deletions
1
packages/commonwealth/client/scripts/views/pages/RewardsPage/tables/QuestTable/index.ts
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 @@ | ||
export * from './QuestTable'; |
2 changes: 2 additions & 0 deletions
2
...mmonwealth/client/scripts/views/pages/RewardsPage/tables/ReferralTable/ReferralTable.scss
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,2 @@ | ||
.ReferralTable { | ||
} |
7 changes: 7 additions & 0 deletions
7
...ommonwealth/client/scripts/views/pages/RewardsPage/tables/ReferralTable/ReferralTable.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,7 @@ | ||
import React from 'react'; | ||
|
||
import './ReferralTable.scss'; | ||
|
||
export const ReferralTable = () => { | ||
return <div className="ReferralTable">Referral Table</div>; | ||
}; |
1 change: 1 addition & 0 deletions
1
packages/commonwealth/client/scripts/views/pages/RewardsPage/tables/ReferralTable/index.ts
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 @@ | ||
export * from './ReferralTable'; |
2 changes: 2 additions & 0 deletions
2
...s/commonwealth/client/scripts/views/pages/RewardsPage/tables/WalletTable/WalletTable.scss
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,2 @@ | ||
.WalletTable { | ||
} |
7 changes: 7 additions & 0 deletions
7
...es/commonwealth/client/scripts/views/pages/RewardsPage/tables/WalletTable/WalletTable.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,7 @@ | ||
import React from 'react'; | ||
|
||
import './WalletTable.scss'; | ||
|
||
export const WalletTable = () => { | ||
return <div className="WalletTable">Wallet Table</div>; | ||
}; |
1 change: 1 addition & 0 deletions
1
packages/commonwealth/client/scripts/views/pages/RewardsPage/tables/WalletTable/index.ts
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 @@ | ||
export * from './WalletTable'; |
5 changes: 5 additions & 0 deletions
5
packages/commonwealth/client/scripts/views/pages/RewardsPage/tables/index.ts
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,5 @@ | ||
import { QuestTable } from './QuestTable'; | ||
import { ReferralTable } from './ReferralTable'; | ||
import { WalletTable } from './WalletTable'; | ||
|
||
export { QuestTable, ReferralTable, WalletTable }; |