16 lines
445 B
TypeScript
16 lines
445 B
TypeScript
import { Show } from 'solid-js'
|
|
import type { Shout } from '../../graphql/types.gen'
|
|
import { ArticleCard } from './Card'
|
|
|
|
export default (props: { article: Shout }) => (
|
|
<Show when={!!props.article}>
|
|
<div class="floor floor--one-article">
|
|
<div class="wide-container row">
|
|
<div class="col-12">
|
|
<ArticleCard article={props.article} settings={{ isSingle: true }} />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Show>
|
|
)
|