pinafore/routes/_components/timeline/NotificationVirtualListItem.html
Nolan Lawson 42be854521
upgrade to svelte 2.0 (#251)
* upgrade to svelte 2.0

* update svelte-loader to 2.9.0
2018-05-01 17:05:36 -07:00

17 lines
406 B
HTML

<Notification
notification={virtualProps.notification}
timelineType={virtualProps.timelineType}
timelineValue={virtualProps.timelineValue}
focusSelector={virtualProps.focusSelector}
index={virtualIndex}
length={virtualLength}
on:recalculateHeight />
<script>
import Notification from '../status/Notification.html'
export default {
components: {
Notification
}
}
</script>