mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-25 09:34:16 -05:00
134de736dc
Co-authored-by: Renaud Chaput <renchap@gmail.com>
14 lines
320 B
TypeScript
14 lines
320 B
TypeScript
import Column from '../../../components/column';
|
|
import ColumnHeader from '../../../components/column_header';
|
|
|
|
interface Props {
|
|
multiColumn?: boolean;
|
|
}
|
|
|
|
export const ColumnLoading: React.FC<Props> = (otherProps) => (
|
|
<Column>
|
|
<ColumnHeader {...otherProps} />
|
|
<div className='scrollable' />
|
|
</Column>
|
|
);
|