Skip to content

Commit

Permalink
chore: 🔧 import type keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
JAM-PARK committed Nov 4, 2024
1 parent 195aa57 commit d912d4e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion apps/reaction-speed-test/app/(pages)/measurement.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { Button, ButtonText } from "@/components/ui/button";
import { Stack, useRouter } from "expo-router";
import type { FC } from "react";
import { Text, View } from "react-native";

const Measurement: React.FC = () => {
const Measurement: FC = () => {
const router = useRouter();

return (
Expand Down
3 changes: 2 additions & 1 deletion apps/reaction-speed-test/app/(pages)/results.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { Button, ButtonText } from "@/components/ui/button";
import { Stack, useRouter } from "expo-router";
import type { FC } from "react";
import { Text, View } from "react-native";

const Results: React.FC = () => {
const Results: FC = () => {
const router = useRouter();

return (
Expand Down
3 changes: 2 additions & 1 deletion apps/reaction-speed-test/app/(pages)/settings.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { Button, ButtonText } from "@/components/ui/button";
import { Stack, useRouter } from "expo-router";
import type { FC } from "react";
import { Text, View } from "react-native";

const Settings: React.FC = () => {
const Settings: FC = () => {
const router = useRouter();

return (
Expand Down

0 comments on commit d912d4e

Please sign in to comment.