1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-01-10 10:16:20 +01:00
Pinafore-Web-Client-Frontend/routes/_components/timeline/NotificationVirtualListItem.html

17 lines
430 B
HTML
Raw Normal View History

<Notification
notification="{{virtualProps.notification}}"
timelineType="{{virtualProps.timelineType}}"
timelineValue="{{virtualProps.timelineValue}}"
focusSelector="{{virtualProps.focusSelector}}"
index="{{virtualIndex}}"
length="{{virtualLength}}"
on:recalculateHeight />
<script>
2018-02-04 19:05:26 +01:00
import Notification from '../status/Notification.html'
export default {
components: {
Notification
}
}
</script>