Event – User - app/(application)/(user)/event/(tabs)/history.tsx - app/(application)/(user)/event/(tabs)/status.tsx - app/(application)/(user)/event/[id]/edit.tsx - app/(application)/(user)/event/create.tsx Event – Screens (Untracked) - screens/Event/ScreenHistory.tsx - screens/Event/ScreenStatus.tsx API - service/api-client/api-event.ts Docs - docs/prompt-for-qwen-code.md ### No Issue
11 lines
215 B
TypeScript
11 lines
215 B
TypeScript
/* eslint-disable react-hooks/exhaustive-deps */
|
|
import Event_ScreenStatus from "@/screens/Event/ScreenStatus";
|
|
|
|
export default function EventStatus() {
|
|
return (
|
|
<>
|
|
<Event_ScreenStatus />
|
|
</>
|
|
);
|
|
}
|