-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(blade): Tour component web implementation (#1799)
- Loading branch information
1 parent
477c4fd
commit 88aba1d
Showing
28 changed files
with
3,318 additions
and
121 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
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
14
packages/blade/src/components/SpotlightPopoverTour/Tour.native.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,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 }; |
Oops, something went wrong.