We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, if we find home.jsx, for example, and replicate it as Foo, the new file will be Foo.jsx, instead of foo.jsx.
home.jsx
Foo
Foo.jsx
foo.jsx
Boilerplate that uses that pattern: https://github.com/jedireza/aqua
The text was updated successfully, but these errors were encountered:
Hi, your project is awesome, congrats!
Someone is assigned to this issue? I wanna contribute 🤘
Sorry, something went wrong.
@psicotropicos Sure, go ahead, please. :)
@diegohaz with this PR the correct is:
before foo-name.jsx = FooName.jsx foo.jsx = Foo.jsx
foo-name.jsx = FooName.jsx
foo.jsx = Foo.jsx
after foo-name.jsx = foo-name.jsx foo.jsx = foo.jsx
foo-name.jsx = foo-name.jsx
foo.jsx = foo.jsx
@marlonmleite Yeah, but component name (in file contents) should be kept as FooName and Foo.
FooName
No branches or pull requests
Currently, if we find
home.jsx
, for example, and replicate it asFoo
, the new file will beFoo.jsx
, instead offoo.jsx
.Boilerplate that uses that pattern: https://github.com/jedireza/aqua
The text was updated successfully, but these errors were encountered: