Skip to content

Commit ebd0c78

Browse files
committed
chore: using aliases
1 parent 4a0c4a6 commit ebd0c78

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/2024/Speakers/Speakers2024.tsx

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { MOBILE_BREAKPOINT } from "../../constants/BreakPoints";
2-
import { Color } from "../../styles/colors";
1+
import { MOBILE_BREAKPOINT } from "@constants/BreakPoints";
2+
import { Color } from "@styles/colors";
33
import React, { FC, useCallback, useEffect } from "react";
44
import LessThanBlueIcon from "../../assets/images/LessThanBlueIcon.svg";
55
import MoreThanBlueIcon from "../../assets/images/MoreThanBlueIcon.svg";
6-
import SectionWrapper from "../../components/SectionWrapper/SectionWrapper";
7-
import TitleSection from "../../components/SectionTitle/TitleSection";
6+
import SectionWrapper from "@components/SectionWrapper/SectionWrapper";
7+
import TitleSection from "@components/SectionTitle/TitleSection";
88
import { useWindowSize } from "react-use";
99
import {
1010
SpeakersCardsContainer,
@@ -16,13 +16,13 @@ import {
1616
StyledSpeakersSection,
1717
StyledWaveContainer,
1818
} from "./Speakers.style";
19-
import webData from "../../data/2024.json";
20-
import Button from "../../components/UI/Button";
21-
import { gaEventTracker } from "../../components/analytics/Analytics";
22-
import { useFetchSpeakers } from "../../hooks/useFetchSpeakers";
23-
import { SpeakerCard } from "../../views/Speakers/components/SpeakersCard";
24-
import { ISpeaker } from "../../types/speakers";
25-
import { useSentryErrorReport } from "../../hooks/useSentryErrorReport";
19+
import webData from "@data/2024.json";
20+
import Button from "@components/UI/Button";
21+
import { gaEventTracker } from "@components/analytics/Analytics";
22+
import { useFetchSpeakers } from "@hooks/useFetchSpeakers";
23+
import { SpeakerCard } from "@views/Speakers/components/SpeakersCard";
24+
import { ISpeaker } from "@types/speakers";
25+
import { useSentryErrorReport } from "@hooks/useSentryErrorReport";
2626

2727
const LessThanGreaterThan = () => (
2828
<>
@@ -63,7 +63,7 @@ const Speakers2024: FC<React.PropsWithChildren<unknown>> = () => {
6363
Technologies and in the JCP."
6464
color={Color.WHITE}
6565
/>
66-
{width > MOBILE_BREAKPOINT && <LessThanGreaterThan/>}
66+
{width > MOBILE_BREAKPOINT && <LessThanGreaterThan />}
6767
<SpeakersCardsContainer>
6868
{isLoading && <p>Loading...</p>}
6969
{isBetween(CFPStartDay, CFPEndDay) && (

0 commit comments

Comments
 (0)