diff --git a/STYLEGUIDE.md b/STYLEGUIDE.md index 5b21087443..bb5554e2d2 100644 --- a/STYLEGUIDE.md +++ b/STYLEGUIDE.md @@ -351,7 +351,7 @@ Minimizes inline JavaScript logic, and creates a named function that will show u #### Prefer -```tsx +```jsx const handleClick = e => { e.preventDefault(); setState(curr => !curr); @@ -362,7 +362,7 @@ const handleClick = e => { #### Avoid -```tsx +```jsx