Skip to content

Commit 2caa184

Browse files
Update coupling-cohesion.md (feature-sliced#594)
Fixed typo in type declaration
1 parent ef99361 commit 2caa184

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

i18n/ru/docusaurus-plugin-content-docs/current/reference/isolation/coupling-cohesion.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ sidebar_position: 1
3030

3131
```tsx
3232
interface ListProps {
33-
Header: Component;
34-
Items: Component;
33+
Header: React.ReactNode;
34+
Items: React.ReactNode;
3535
}
3636

3737
const List: Component<ListProps> = ({ Header, Items }) => (

0 commit comments

Comments
 (0)