Skip to content

Commit b8c3293

Browse files
committed
fix: improve example app descriptions
1 parent d4a58b0 commit b8c3293

File tree

1 file changed

+4
-4
lines changed
  • packages/create-react-native-library/src

1 file changed

+4
-4
lines changed

packages/create-react-native-library/src/input.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,23 +57,23 @@ const LANGUAGE_CHOICES: {
5757
const EXAMPLE_CHOICES = (
5858
[
5959
{
60-
title: 'Vanilla',
60+
title: 'App with Community CLI',
6161
value: 'vanilla',
6262
description: "provides access to app's native code",
6363
disabled: false,
6464
},
6565
{
66-
title: 'Test app',
66+
title: 'React Native Test App by Microsoft',
6767
value: 'test-app',
6868
description: "app's native code is abstracted away",
6969
// The test app is disabled for now until proper
7070
// Codegen spec shipping is implemented
7171
disabled: !process.env.CRNL_ENABLE_TEST_APP,
7272
},
7373
{
74-
title: 'Expo',
74+
title: 'App with Expo CLI',
7575
value: 'expo',
76-
description: 'managed expo project with web support',
76+
description: 'managed expo app with web support',
7777
disabled: false,
7878
},
7979
] as const

0 commit comments

Comments
 (0)