Skip to content

Commit

Permalink
Remove .jsx extension from imports
Browse files Browse the repository at this point in the history
This makes imports flexible to .tsx file conversion.
  • Loading branch information
victorlin committed May 31, 2024
1 parent ad9e242 commit 5186c63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions static-site/src/components/ListResources/ResourceGroup.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import React, {useState, useContext} from 'react';
import styled from 'styled-components';
import { MdHistory, MdFormatListBulleted, MdChevronRight } from "react-icons/md";
import { IndividualResource, getMaxResourceWidth, TooltipWrapper, IconContainer,
ResourceLinkWrapper, ResourceLink, LINK_COLOR, LINK_HOVER_COLOR } from "./IndividualResource.jsx"
import { SetModalContext } from "./Modal.jsx";
ResourceLinkWrapper, ResourceLink, LINK_COLOR, LINK_HOVER_COLOR } from "./IndividualResource"
import { SetModalContext } from "./Modal";

const ResourceGroupHeader = ({data, isMobile, setCollapsed, collapsible, isCollapsed, resourcesToShowWhenCollapsed, quickLinks}) => {
const setModal = useContext(SetModalContext);
Expand Down

0 comments on commit 5186c63

Please sign in to comment.