( params: ShowcaseSearchParams | null | undefined, )
| 72 | }; |
| 73 | |
| 74 | const getStoryFromParams = ( |
| 75 | params: ShowcaseSearchParams | null | undefined, |
| 76 | ) => { |
| 77 | const storyId = params?.get("story"); |
| 78 | |
| 79 | return stories.find((story) => story.id === storyId) ?? defaultStory; |
| 80 | }; |
| 81 | |
| 82 | const getInitialVisualMode = () => { |
| 83 | const params = getInitialSearchParams(); |