Skip to content

Commit

Permalink
fix: improve example app descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
satya164 committed Dec 9, 2024
1 parent d4a58b0 commit b8c3293
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/create-react-native-library/src/input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,23 +57,23 @@ const LANGUAGE_CHOICES: {
const EXAMPLE_CHOICES = (
[
{
title: 'Vanilla',
title: 'App with Community CLI',
value: 'vanilla',
description: "provides access to app's native code",
disabled: false,
},
{
title: 'Test app',
title: 'React Native Test App by Microsoft',
value: 'test-app',
description: "app's native code is abstracted away",
// The test app is disabled for now until proper
// Codegen spec shipping is implemented
disabled: !process.env.CRNL_ENABLE_TEST_APP,
},
{
title: 'Expo',
title: 'App with Expo CLI',
value: 'expo',
description: 'managed expo project with web support',
description: 'managed expo app with web support',
disabled: false,
},
] as const
Expand Down

0 comments on commit b8c3293

Please sign in to comment.