mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-06 07:25:20 +01:00
10 lines
201 B
Markdown
10 lines
201 B
Markdown
# Comments
|
|
|
|
## Start with uppercase letter and end with a period
|
|
|
|
```jsx
|
|
// This is a comment that will help you understand what is happening in the
|
|
// code below.
|
|
const someFunction = () => null;
|
|
```
|