1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Rename to Component

This commit is contained in:
viown 2025-02-17 21:27:18 +03:00
parent 4fb82c91a9
commit e3b4eb9231
3 changed files with 6 additions and 6 deletions

View file

@ -41,7 +41,7 @@ export const action = async ({ request }: ActionFunctionArgs) => {
};
};
const Resume = () => {
export const Component = () => {
const navigation = useNavigation();
const actionData = useActionData() as ActionData | undefined;
const isSubmitting = navigation.state === 'submitting';
@ -148,4 +148,4 @@ const Resume = () => {
);
};
export default Resume;
Component.displayName = 'ResumePage';