| 15 | } from "./samples-render"; |
| 16 | |
| 17 | interface SamplesData { |
| 18 | cookbooks: Cookbook[]; |
| 19 | totalRecipes: number; |
| 20 | totalCookbooks: number; |
| 21 | filters: { |
| 22 | languages: string[]; |
| 23 | tags: string[]; |
| 24 | }; |
| 25 | } |
| 26 | |
| 27 | // State |
| 28 | let samplesData: SamplesData | null = null; |
nothing calls this directly
no outgoing calls
no test coverage detected