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:
parent
4fb82c91a9
commit
e3b4eb9231
3 changed files with 6 additions and 6 deletions
|
@ -42,7 +42,7 @@ export const action = async ({ request }: ActionFunctionArgs) => {
|
|||
};
|
||||
};
|
||||
|
||||
const Logs = () => {
|
||||
export const Component = () => {
|
||||
const navigation = useNavigation();
|
||||
const actionData = useActionData() as ActionData | undefined;
|
||||
const isSubmitting = navigation.state === 'submitting';
|
||||
|
@ -133,4 +133,4 @@ const Logs = () => {
|
|||
);
|
||||
};
|
||||
|
||||
export default Logs;
|
||||
Component.displayName = 'LogsPage';
|
||||
|
|
|
@ -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';
|
||||
|
|
|
@ -32,7 +32,7 @@ export const action = async ({ request }: ActionFunctionArgs) => {
|
|||
};
|
||||
};
|
||||
|
||||
const Streaming = () => {
|
||||
export const Component = () => {
|
||||
const navigation = useNavigation();
|
||||
const actionData = useActionData() as ActionData | undefined;
|
||||
const isSubmitting = navigation.state === 'submitting';
|
||||
|
@ -87,4 +87,4 @@ const Streaming = () => {
|
|||
);
|
||||
};
|
||||
|
||||
export default Streaming;
|
||||
Component.displayName = 'StreamingPage';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue