-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: [Part 1] Add more frameworks to onboarding - Angular (#20868)
* first commit * imports * comments
- Loading branch information
Showing
74 changed files
with
1,447 additions
and
116 deletions.
There are no files selected for viewing
Binary file modified
BIN
+13.3 KB
(120%)
frontend/__snapshots__/scenes-other-onboarding--onboarding-sd-ks--dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+13.5 KB
(120%)
frontend/__snapshots__/scenes-other-onboarding--onboarding-sd-ks--light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
13 changes: 13 additions & 0 deletions
13
frontend/src/scenes/onboarding/sdks/feature-flags/angular.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,13 @@ | ||
import { SDKKey } from '~/types' | ||
|
||
import { SDKInstallAngularInstructions } from '../sdk-install-instructions/angular' | ||
import { FlagImplementationSnippet } from './flagImplementationSnippet' | ||
|
||
export function FeatureFlagsAngularInstructions(): JSX.Element { | ||
return ( | ||
<> | ||
<SDKInstallAngularInstructions /> | ||
<FlagImplementationSnippet sdkKey={SDKKey.JS_WEB} /> | ||
</> | ||
) | ||
} |
13 changes: 13 additions & 0 deletions
13
frontend/src/scenes/onboarding/sdks/feature-flags/astro.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,13 @@ | ||
import { SDKKey } from '~/types' | ||
|
||
import { SDKInstallAstroInstructions } from '../sdk-install-instructions/astro' | ||
import { FlagImplementationSnippet } from './flagImplementationSnippet' | ||
|
||
export function FeatureFlagsAstroInstructions(): JSX.Element { | ||
return ( | ||
<> | ||
<SDKInstallAstroInstructions /> | ||
<FlagImplementationSnippet sdkKey={SDKKey.JS_WEB} /> | ||
</> | ||
) | ||
} |
13 changes: 13 additions & 0 deletions
13
frontend/src/scenes/onboarding/sdks/feature-flags/bubble.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,13 @@ | ||
import { SDKKey } from '~/types' | ||
|
||
import { SDKInstallBubbleInstructions } from '../sdk-install-instructions/bubble' | ||
import { FlagImplementationSnippet } from './flagImplementationSnippet' | ||
|
||
export function FeatureFlagsBubbleInstructions(): JSX.Element { | ||
return ( | ||
<> | ||
<SDKInstallBubbleInstructions /> | ||
<FlagImplementationSnippet sdkKey={SDKKey.JS_WEB} /> | ||
</> | ||
) | ||
} |
13 changes: 13 additions & 0 deletions
13
frontend/src/scenes/onboarding/sdks/feature-flags/django.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,13 @@ | ||
import { SDKKey } from '~/types' | ||
|
||
import { SDKInstallDjangoInstructions } from '../sdk-install-instructions' | ||
import { FlagImplementationSnippet } from './flagImplementationSnippet' | ||
|
||
export function FeatureFlagsDjangoInstructions(): JSX.Element { | ||
return ( | ||
<> | ||
<SDKInstallDjangoInstructions /> | ||
<FlagImplementationSnippet sdkKey={SDKKey.PYTHON} /> | ||
</> | ||
) | ||
} |
Oops, something went wrong.