Skip to content

Commit

Permalink
Rename files
Browse files Browse the repository at this point in the history
  • Loading branch information
shangzhenyang committed Feb 1, 2025
1 parent 94536cb commit f0622c4
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
File renamed without changes.
8 changes: 4 additions & 4 deletions src/components/App.tsx → src/components/app.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Analytics from "@/components/Analytics";
import ControlArea from "@/components/ControlArea";
import Footer from "@/components/Footer";
import Marquee from "@/components/Marquee";
import Analytics from "@/components/analytics";
import ControlArea from "@/components/control-area";
import Footer from "@/components/footer";
import Marquee from "@/components/marquee";
import { useAppDispatch } from "@/redux/hooks";
import { setIsFullscreen } from "@/redux/reducers/app";
import { JSX, useEffect, useRef } from "react";
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ColorPickerModal from "@/components/ColorPickerModal";
import ColorPickerModal from "@/components/color-picker-modal";
import { Input } from "@nextui-org/react";
import { JSX, useState } from "react";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import ColorPicker from "@/components/ColorPicker";
import ColorPickerModal from "@/components/ColorPickerModal";
import ColorPicker from "@/components/color-picker";
import ColorPickerModal from "@/components/color-picker-modal";
import { useAppSelector } from "@/redux/hooks";
import {
setBackgroundColor,
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/components/Marquee.tsx → src/components/marquee.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import MarqueeShell from "@/components/MarqueeShell";
import MarqueeShell from "@/components/marquee-shell";
import { useAppSelector } from "@/redux/hooks";
import clsx from "clsx";
import { JSX, RefObject, useEffect, useRef, useState } from "react";
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions src/main.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import App from "@/components/App";
import "@/index.css";
import App from "@/components/app";
import "@/globals.css";
import store from "@/redux/store";
import translationEnUs from "@/translations/en-us.json";
import translationZhCn from "@/translations/zh-cn.json";
Expand Down

0 comments on commit f0622c4

Please sign in to comment.