2021-09-11 16:00:48 -07:00
|
|
|
import React from 'react';
|
2022-01-10 14:25:06 -08:00
|
|
|
|
2021-09-11 16:00:48 -07:00
|
|
|
import BundleContainer from 'soapbox/features/ui/containers/bundle_container';
|
|
|
|
import { ScheduleForm } from 'soapbox/features/ui/util/async-components';
|
2021-06-18 09:04:31 -07:00
|
|
|
|
2021-09-11 16:00:48 -07:00
|
|
|
export default class ScheduleFormContainer extends React.PureComponent {
|
2021-06-18 09:04:31 -07:00
|
|
|
|
2021-09-11 16:00:48 -07:00
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<BundleContainer fetchComponent={ScheduleForm}>
|
|
|
|
{Component => <Component {...this.props} />}
|
|
|
|
</BundleContainer>
|
|
|
|
);
|
|
|
|
}
|
2021-06-18 09:04:31 -07:00
|
|
|
|
2021-09-11 16:00:48 -07:00
|
|
|
}
|