decentraland-ui
Version:
Decentraland's UI components and styles
56 lines (54 loc) • 3.34 kB
text/typescript
import WorldsAccessRestoredNotification from './Worlds/WorldsAcessRestoredNotification'
import WorldsAccessRestrictedNotification from './Worlds/WorldsAccessRestrictedNotification'
import WorldsMissingResourcesNotification from './Worlds/WorldsMissingResourcesNotification'
import WorldsPermissionGrantedNotification from './Worlds/WorldsPermissionGrantedNotification'
import WorldsPermissionRevokedNotification from './Worlds/WorldsPermissionRevokedNotification'
import BidAcceptedNotification from './Marketplace/BidAcceptedNotification'
import BidReceivedNotification from './Marketplace/BidReceivedNotification'
import ItemSoldNotification from './Marketplace/ItemSoldNotification'
import RoyaltiesEarnedNotification from './Marketplace/RoyaltiesEarnedNotification'
import GovernanceAnnouncementNotification from './Governance/GovernanceAnnouncementNotification'
import GovernanceAuthoredProposalFinishedNotification from './Governance/GovernanceAuthoredProposalFinishedNotification'
import GovernanceCoauthorRequestedNotification from './Governance/GovernanceCoauthorRequestedNotification'
import GovernanceNewCommentOnProposalNotification from './Governance/GovernanceNewCommentOnProposalNotification'
import GovernanceNewCommentOnProjectUpdateNotification from './Governance/GovernanceNewCommentOnProjectUpdateNotification'
import GovernanceProposalEnactedNotification from './Governance/GovernanceProposalEnactedNotification'
import GovernanceVotingEndedVoterNotification from './Governance/GovernanceVotingEndedVoterNotification'
import GovernanceTenderPassedNotification from './Governance/GovernanceTenderPassedNotification'
import GovernancePitchPassedNotification from './Governance/GovernancePitchPassedNotification'
import GovernanceVotedOnBehalfNotification from './Governance/GovernanceVotedOnBehalfNotification'
import GovernanceWhaleVoteNotification from './Governance/GovernanceWhaleVoteNotification'
import GovernanceCliffEndedNotification from './Governance/GovernanceCliffEndedNotification'
import LandRentedNotification from './Land/LandRentedNotification'
import LandRentalEndedNotification from './Land/LandRentalEndedNotification'
import RewardAssignedNotification from './Reward/RewardAssignedNotification'
import EventsStartsSoonNotification from './Events/EventStartsSoonNotification'
import EventsStartedNotification from './Events/EventStartedNotification'
export {
WorldsAccessRestoredNotification,
WorldsAccessRestrictedNotification,
WorldsMissingResourcesNotification,
BidAcceptedNotification,
BidReceivedNotification,
ItemSoldNotification,
RoyaltiesEarnedNotification,
GovernanceAnnouncementNotification,
GovernanceAuthoredProposalFinishedNotification,
GovernanceCoauthorRequestedNotification,
GovernanceNewCommentOnProposalNotification,
GovernanceNewCommentOnProjectUpdateNotification,
GovernanceProposalEnactedNotification,
GovernanceVotingEndedVoterNotification,
GovernancePitchPassedNotification,
GovernanceTenderPassedNotification,
GovernanceVotedOnBehalfNotification,
GovernanceWhaleVoteNotification,
GovernanceCliffEndedNotification,
LandRentalEndedNotification,
LandRentedNotification,
RewardAssignedNotification,
EventsStartsSoonNotification,
EventsStartedNotification,
WorldsPermissionGrantedNotification,
WorldsPermissionRevokedNotification
}