Skip to content

Commit 71ce468

Browse files
refactor 2
1 parent 5986360 commit 71ce468

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/devextreme-cli/src/utility/prompts/react-app-type.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ const choices = [
66
];
77

88
const question = {
9-
message: 'Specify the desired application type:',
9+
message: 'Specify the desired React application type:',
1010
choices: choices
1111
};
1212

13-
const getScaffoldToolInfo = async(defaultValue) => {
13+
const getReactAppType = async(defaultValue) => {
1414
return await prompts(question, choices, defaultValue);
1515
};
1616

17-
module.exports = getScaffoldToolInfo;
17+
module.exports = getReactAppType;

0 commit comments

Comments
 (0)