= (args) => (
+ {args.children}
+)
+
+export const OnboardingLayoutStory = Template.bind({})
+OnboardingLayoutStory.args = {
+ pageNumber: 2,
+ title: 'Save links to read later',
+ subTitle:
+ 'Save any link to your library using our apps and browser extensions',
+ description: 'Install our apps and browser extensions',
+ children: This is where the child is rendered.
+}
diff --git a/packages/web/stories/OnboardingPage2Story.stories.tsx b/packages/web/stories/OnboardingPage2Story.stories.tsx
new file mode 100644
index 000000000..5122b6ec7
--- /dev/null
+++ b/packages/web/stories/OnboardingPage2Story.stories.tsx
@@ -0,0 +1,13 @@
+import { ComponentStory, ComponentMeta } from '@storybook/react'
+import OnboardingPage2 from '../components/templates/onboarding/02'
+
+export default {
+ title: 'Components/OnboardingPage2Story',
+ component: OnboardingPage2,
+} as ComponentMeta
+
+export const OnboardingPage2Story: ComponentStory = (args: any) => {
+ return (
+
+ )
+}