Skip to content

Commit

Permalink
feat(blade): Tour component web implementation (#1799)
Browse files Browse the repository at this point in the history
  • Loading branch information
anuraghazra authored Nov 10, 2023
1 parent 477c4fd commit 88aba1d
Show file tree
Hide file tree
Showing 28 changed files with 3,318 additions and 121 deletions.
5 changes: 5 additions & 0 deletions .changeset/three-rice-repair.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@razorpay/blade': minor
---

feat(blade): added SpotlightPopoverTour web implementation
14 changes: 14 additions & 0 deletions packages/blade/src/components/SpotlightPopoverTour/Tour.native.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/* eslint-disable react/jsx-no-useless-fragment */
import type { SpotlightPopoverTourProps } from './types';
import { throwBladeError } from '~utils/logger';

const Tour = (_props: SpotlightPopoverTourProps): React.ReactElement => {
throwBladeError({
message: 'Tour is not yet implemented for native',
moduleName: 'Tour',
});

return <></>;
};

export { Tour };
Loading

0 comments on commit 88aba1d

Please sign in to comment.