- );
-}
-
-export default App;
-```
-
-Note that `my-flag-key` is accessed in camel-cased form. Read [our documentation](https://docs.launchdarkly.com/sdk/client-side/react/react-web?site=launchDarkly#flag-keys) to learn more about referencing flag keys in React.
-
-Now that your application is ready, run the application to see what value we get.
-
-```shell
-npm start
-```
-
-You should see:
-
-`Feature flag my-flag-key is FALSE for this context`
diff --git a/internal/sdks/sdk_instructions/react-native.md b/internal/sdks/sdk_instructions/react-native.md
deleted file mode 100644
index af944a50..00000000
--- a/internal/sdks/sdk_instructions/react-native.md
+++ /dev/null
@@ -1,77 +0,0 @@
-# Installation steps
-1. Use create-expo-app to create a new Expo application:
-```shell
-npx create-expo-app hello-react-native -t expo-template-blank-typescript && cd hello-react-native
-```
-
-2. Install the LaunchDarkly SDK:
-```shell
-yarn add @launchdarkly/react-native-client-sdk
-```
-
-3. In `App.tsx`:
-```tsx
-import {
- AutoEnvAttributes,
- LDProvider,
- ReactNativeLDClient,
-} from '@launchdarkly/react-native-client-sdk';
-
-import Welcome from './src/welcome';
-
-const featureClient = new ReactNativeLDClient(
- 'myMobileKey',
- AutoEnvAttributes.Enabled,
- {
- debug: true,
- applicationInfo: {
- id: 'ld-rn-test-app',
- version: '0.0.1',
- },
- },
-);
-
-const App = () => {
- return (
-