diff options
Diffstat (limited to 'examples/hackernews/src/components/Story.astro')
-rw-r--r-- | examples/hackernews/src/components/Story.astro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/hackernews/src/components/Story.astro b/examples/hackernews/src/components/Story.astro index ee43bab17..e91748a30 100644 --- a/examples/hackernews/src/components/Story.astro +++ b/examples/hackernews/src/components/Story.astro @@ -1,8 +1,8 @@ --- -import Show from './Show.astro'; import type { IStory } from '../types.js'; +import Show from './Show.astro'; -export interface Props { +interface Props { story: IStory; } |