19 lines
392 B
JavaScript
19 lines
392 B
JavaScript
import Marquee from "./Marquee.svelte";
|
|
|
|
export default {
|
|
component: Marquee,
|
|
};
|
|
|
|
export const MarqueeStory = {
|
|
args: {
|
|
items: [
|
|
{
|
|
title: "Hello World, this is me, a long text scrolling happily ever after",
|
|
},
|
|
{
|
|
title:
|
|
"Have you heard about a piece of Javascript code that wanted to discover the world on its own?",
|
|
},
|
|
],
|
|
},
|
|
};
|