You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
379 B
10 lines
379 B
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> |
|
);
|
|
|