12 lines
350 B
TypeScript
12 lines
350 B
TypeScript
import { handlePostToolbar } from './post-toolbar.ts';
|
|
import handleCiteButton from './cite-button.ts';
|
|
import handleLikeButton from './like-button.ts';
|
|
import handleShareButton from './share-button.ts';
|
|
|
|
export default function singles(): void {
|
|
handlePostToolbar();
|
|
handleCiteButton();
|
|
handleLikeButton();
|
|
handleShareButton();
|
|
}
|