We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f364f1 commit 856ef19Copy full SHA for 856ef19
versioned_docs/version-3.x/_components/PackageUninstall.tsx
@@ -13,7 +13,7 @@ const pkgManagers = [
13
{ name: 'yarn', command: 'yarn remove' },
14
];
15
16
-const PackageInstall = ({ dependencies }: Props) => {
+const PackageUninstall = ({ dependencies }: Props) => {
17
return (
18
<Tabs>
19
{pkgManagers.map((pkg) => (
@@ -27,4 +27,4 @@ const PackageInstall = ({ dependencies }: Props) => {
27
);
28
};
29
30
-export default PackageInstall;
+export default PackageUninstall;
0 commit comments