闭社主体 forked from https://github.com/tootsuite/mastodon
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.

19 lines
474 B

  1. import React from 'react';
  2. import PropTypes from 'prop-types';
  3. import Column from '../../../components/column';
  4. import ColumnHeader from '../../../components/column_header';
  5. const ColumnLoading = ({ title = '', icon = ' ' }) => (
  6. <Column>
  7. <ColumnHeader icon={icon} title={title} multiColumn={false} />
  8. <div className='scrollable' />
  9. </Column>
  10. );
  11. ColumnLoading.propTypes = {
  12. title: PropTypes.node,
  13. icon: PropTypes.string,
  14. };
  15. export default ColumnLoading;