Skip to content

Commit 773740f

Browse files
committed
[#11] chore: sort-imports 설정 추가
1 parent a0ed76c commit 773740f

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"sort-imports.default-sort-style": "module-scoped"
3+
}

src/screens/Home/Home.tsx

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
import React from "react";
2+
import { TouchableOpacity } from "react-native-gesture-handler";
3+
4+
import { NativeStackScreenProps } from "@react-navigation/native-stack";
5+
6+
import { RootStackParamList } from "../../App";
17
import {
28
Bold,
39
Container,
@@ -11,16 +17,11 @@ import {
1117
WaitingParagraph,
1218
} from "./style";
1319

14-
import { NativeStackScreenProps } from "@react-navigation/native-stack";
15-
import React from "react";
16-
import { RootStackParamList } from "../../App";
17-
import { TouchableOpacity } from "react-native-gesture-handler";
18-
1920
type Props = NativeStackScreenProps<RootStackParamList, "Home">;
2021

2122
const Home = ({ navigation }: Props) => {
2223
// TODO: 환경변수로 빼려고 합니다.
23-
const host = `http://192.168.35.5:19000`;
24+
const host = `http://192.168.35.250:19000`;
2425

2526
const logoURI = `${host}/src/assets/image/logo.png`;
2627
const laughGroupURI = `${host}/src/assets/image/laugh-group.png`;

0 commit comments

Comments
 (0)