Skip to content

Commit

Permalink
Move Choices section from components to views folder
Browse files Browse the repository at this point in the history
  • Loading branch information
brandstetterm committed Dec 5, 2023
1 parent 4ca7049 commit 79e60f7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/pages/[lang]/index.astro
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
import type { GetStaticPaths } from "astro";
import ReachNewHeights from "../../views/ReachNewHeights/ReachNewHeights.astro";
import Choices from "../../components/Choices";
import Choices from "../../views/Choices/Choices";
import Uniqueness from "../../views/Uniqueness/Uniqueness.astro";
import Mobile from "../../views/Mobile/Mobile.astro";
import Layout from "../../layouts/Layout.astro";
Expand Down
File renamed without changes.
8 changes: 4 additions & 4 deletions src/components/Choices.tsx → src/views/Choices/Choices.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { useEffect, useState } from "react";
import ProgressButton from "../../components/ProgressButton";
import useMediaQuery from "../../hooks/useMediaQuery";
import Video from "../../components/Video";
import Icon from "../../components/Icon";
import "./Choices.scss";
import ProgressButton from "./ProgressButton";
import useMediaQuery from "../hooks/useMediaQuery";
import Video from "./Video";
import Icon from "./Icon";

const Choices = () => {
const [position, setPosition] = useState(0);
Expand Down

0 comments on commit 79e60f7

Please sign in to comment.