mirror of
https://github.com/amtoaer/bili-sync.git
synced 2026-06-03 06:40:34 +08:00
26 lines
547 B
TypeScript
26 lines
547 B
TypeScript
import Action from './card-action.svelte';
|
|
import Content from './card-content.svelte';
|
|
import Description from './card-description.svelte';
|
|
import Footer from './card-footer.svelte';
|
|
import Header from './card-header.svelte';
|
|
import Title from './card-title.svelte';
|
|
import Root from './card.svelte';
|
|
|
|
export {
|
|
Action,
|
|
//
|
|
Root as Card,
|
|
Action as CardAction,
|
|
Content as CardContent,
|
|
Description as CardDescription,
|
|
Footer as CardFooter,
|
|
Header as CardHeader,
|
|
Title as CardTitle,
|
|
Content,
|
|
Description,
|
|
Footer,
|
|
Header,
|
|
Root,
|
|
Title
|
|
};
|