0
0
Fork 0
Legamunt/app/javascript/mastodon/features/ui/components/column_loading.tsx
2024-12-02 20:07:48 +00:00

10 lines
379 B
TypeScript

import { Column } from 'mastodon/components/column';
import { ColumnHeader } from 'mastodon/components/column_header';
import type { Props as ColumnHeaderProps } from 'mastodon/components/column_header';
export const ColumnLoading: React.FC<ColumnHeaderProps> = (otherProps) => (
<Column>
<ColumnHeader {...otherProps} />
<div className='scrollable' />
</Column>
);