Skip to content

Instantly share code, notes, and snippets.

@PaulieScanlon
Created April 5, 2024 19:45
Show Gist options
  • Save PaulieScanlon/b2238f4cdc14836c3f88336fcf2c83eb to your computer and use it in GitHub Desktop.
Save PaulieScanlon/b2238f4cdc14836c3f88336fcf2c83eb to your computer and use it in GitHub Desktop.
Example Waku Route
// src/pages/index.jsx
import ParentComponent from '../components/parent-component.js';
const Page = async () => {
return <ParentComponent />;
};
export default Page;
export const getConfig = async () => {
return {
render: 'dynamic',
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment