18 lines
377 B
TypeScript
18 lines
377 B
TypeScript
import { PageWrap } from '../_shared/PageWrap'
|
|
import { FeedView } from '../Views/Feed'
|
|
import { onCleanup } from 'solid-js'
|
|
import { resetSortedArticles } from '../../stores/zine/articles'
|
|
|
|
export const FeedPage = () => {
|
|
onCleanup(() => resetSortedArticles())
|
|
|
|
return (
|
|
<PageWrap>
|
|
<FeedView />
|
|
</PageWrap>
|
|
)
|
|
}
|
|
|
|
// for lazy loading
|
|
export default FeedPage
|