23 lines
413 B
TypeScript
Raw Normal View History

2024-04-20 13:43:55 +00:00
import React from 'react';
import { ThingtimeURL } from '~/components/Thingtime/ThingtimeURL';
export default function Index() {
return <ThingtimeURL></ThingtimeURL>;
}
export const action = async ({ request }) => {
return {
status: 200,
headers: {
'Content-Type': 'application/json'
},
body: {
message: 'Hello Thingtime!'
2024-04-20 13:43:55 +00:00
},
cache: {
revalidate: 60
}
};
};