diff options
| author | Armand Philippot <git@armandphilippot.com> | 2023-11-03 23:03:06 +0100 | 
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2023-11-11 18:15:27 +0100 | 
| commit | ce4a18899f24ba89b63ef743476ec0dbf1999ecf (patch) | |
| tree | 003a59ee62bc5f1f97110926559d941a978090ac /src/components/templates/page/page-layout.stories.tsx | |
| parent | ddd45e29745b73e7fe1684e197dcff598b375644 (diff) | |
refactor(components): rewrite SearchForm component
* remove searchPage prop (the consumer should handle the submit)
* change onSubmit type
* use `useForm` hook to handle the form
Diffstat (limited to 'src/components/templates/page/page-layout.stories.tsx')
| -rw-r--r-- | src/components/templates/page/page-layout.stories.tsx | 9 | 
1 files changed, 1 insertions, 8 deletions
| diff --git a/src/components/templates/page/page-layout.stories.tsx b/src/components/templates/page/page-layout.stories.tsx index 7977382..05b47da 100644 --- a/src/components/templates/page/page-layout.stories.tsx +++ b/src/components/templates/page/page-layout.stories.tsx @@ -373,14 +373,7 @@ Blog.args = {    breadcrumb: postsListBreadcrumb,    title: 'Blog',    headerMeta: [{ id: 'total', label: 'Total:', value: `${posts.length}` }], -  children: ( -    <PostsList -      posts={posts} -      byYear={true} -      total={posts.length} -      searchPage="#" -    /> -  ), +  children: <PostsList posts={posts} byYear={true} total={posts.length} />,    widgets: [      <LinksListWidget        heading={ | 
