Skip to content

Commit

Permalink
core(frontend): fix line wrapping in component creation script
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmason committed Jun 6, 2017
1 parent 631307d commit 78a040b
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -110,10 +110,10 @@ function askIfStateless (andThen) {
isYes(response, (err, isStateless) => {
if (err) {
if (response === '?') {
write(' Stateless components are just a render function.')
write(' They are prefered, unless you need to:')
write(' - hold some state')
write(' - pass values to a callback')
writeln(' Stateless components are just a render function.')
writeln(' They are prefered, unless you need to:')
writeln(' - hold some state')
writeln(' - pass values to a callback')
} else {
console.error(c.red('What is "' + response + '"?'))
console.error(
Expand Down

0 comments on commit 78a040b

Please sign in to comment.