import type { FC } from 'react';

import AlbumPage from '../index';

const DraftAlbumPage: FC<{ albumId: number }> = ({ albumId }) => (
  <AlbumPage
    albumId={albumId}
    withAlbumChecks={false}
    withRedirectIfNeeded={false}
  />
);

export default DraftAlbumPage;
