diff options
Diffstat (limited to 'examples/hackernews/src/components/Comment.astro')
-rw-r--r-- | examples/hackernews/src/components/Comment.astro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/hackernews/src/components/Comment.astro b/examples/hackernews/src/components/Comment.astro index 6137f4e1d..07e55d19b 100644 --- a/examples/hackernews/src/components/Comment.astro +++ b/examples/hackernews/src/components/Comment.astro @@ -1,10 +1,10 @@ --- +import type { IComment } from '../types.js'; import For from './For.astro'; import Show from './Show.astro'; import Toggle from './Toggle.astro'; -import type { IComment } from '../types.js'; -export interface Props { +interface Props { comment: IComment; } |