We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3def61d commit c2a80b1Copy full SHA for c2a80b1
packages/docs/src/templates/Docs.tsx
@@ -115,8 +115,8 @@ const DocsLayout: FC = ({ data: { mdx } }: { data: any }) => {
115
Vue components. To learn more please visit the following pages.
116
</p>
117
<ul>
118
- {frameworks.map((item: string) => (
119
- <>
+ {frameworks.map((item: string, index: number) => (
+ <React.Fragment key={index}>
120
{Object.keys(otherFrameworks[item]).map(
121
(el, index) =>
122
el !== 'react' && (
@@ -129,7 +129,7 @@ const DocsLayout: FC = ({ data: { mdx } }: { data: any }) => {
129
</li>
130
),
131
)}
132
- </>
+ </React.Fragment>
133
))}
134
</ul>
135
</>
0 commit comments