Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/_components/Page2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export function Page2() {
</Button>
</Link>
</View>
<Link href="/boards/1" asChild>
<Link href="/posts/1" asChild>
<Button className="bg-mju-primary">
<Text className="text-white">Board</Text>
</Button>
Expand Down
2 changes: 1 addition & 1 deletion app/_components/notice-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Linking, Pressable, ScrollView, View } from 'react-native';
import { useSafeAreaInsets } from 'react-native-safe-area-context';
import { Footer } from './footer';

export function NoticePage() {
export function NoticeScreen() {
const categories = ['전체', '일반', '학사', '장학', '진로', '학생활동', '학칙개정'];
const [selectedCategory, setSelectedCategory] = React.useState('전체');
const [currentPage, setCurrentPage] = React.useState(1);
Expand Down
9 changes: 0 additions & 9 deletions app/boards/[boardId]/index.tsx

This file was deleted.

4 changes: 2 additions & 2 deletions app/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { Page2 } from './_components/Page2';
import { Page3 } from './_components/Page3';
import MealSection from './_components/meal';
import { Page4 } from './_components/Page4';
import { NoticePage } from './_components/notice-page';
import { NoticeScreen } from './_components/notice-page';
import { Page6 } from './_components/Page6';
import { Page7 } from './_components/Page7';
import { Input } from '@/components/ui/input';
Expand Down Expand Up @@ -100,7 +100,7 @@ export default function Screen() {
<MealSection />
<Page1 />
<Page4 />
<NoticePage />
<NoticeScreen />
<Page6 />
<Page7 />
<Page3 />
Expand Down
Loading