Skip to content

Commit 9ac94df

Browse files
Update content/docs/react-without-jsx.md
Co-Authored-By: Jakub Drozdek <[email protected]>
1 parent ec60c6a commit 9ac94df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/docs/react-without-jsx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Na przykład, ten fragment kodu napisany z użyciem JSX:
1313
```js
1414
class Hello extends React.Component {
1515
render() {
16-
return <div>Witaj {this.props.toWhat}</div>;
16+
return <div>Witaj, {this.props.toWhat}</div>;
1717
}
1818
}
1919

0 commit comments

Comments
 (0)