diff options
Diffstat (limited to 'examples/hackernews/src/components/For.astro')
-rw-r--r-- | examples/hackernews/src/components/For.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/hackernews/src/components/For.astro b/examples/hackernews/src/components/For.astro index 885c22a65..6eae88e27 100644 --- a/examples/hackernews/src/components/For.astro +++ b/examples/hackernews/src/components/For.astro @@ -1,7 +1,7 @@ --- import Show from './Show.astro'; -export interface Props<T> { +interface Props<T> { each: Iterable<T>; } |