This repository was archived by the owner on Nov 18, 2021. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow
PascalCase
for variable namaing to define React Component
Basically, we should use `camelCase` or `UPPER_CASE`. But this change allow these patterns for react: ```javascript const SomeContext = React.useContext(); const MemoizedComponent = React.memo(function SomeComponent(props) { ... }); ```
- Loading branch information