Skip to content

Commit

Permalink
Removes Link and Component form component.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
Andir16 committed Mar 18, 2024
1 parent f1de72f commit 52a6a44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/partials/component.jsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React, {useEffect, useState} from 'react';
import { Link, useParams } from "react-router-dom";
import { useParams } from "react-router-dom";

const Component = (props) => {

const { selectedComponent, type } = props;
const { framework, component } = useParams();
const { framework } = useParams();
const [errorCountTotal, setErrorCountTotal] = useState(0);
const [errors, setErrors] = useState([]);
const [requirements, setRequirements] = useState([]);
Expand Down

0 comments on commit 52a6a44

Please sign in to comment.