import React from 'react';

import {
  PaginationComponent
} from '@alicloud/console-components';
import {
  H3
} from '@alicloud/demo-rc-elements';

import {
  ITestingProps
} from '../../types';

export default function Testing({
  component
}: ITestingProps<PaginationComponent>): JSX.Element {
  const Pagination = component;
  
  return <>
    <H3>Some Case</H3>
    <Pagination {...{
      current: 1,
      total: 200
    }} />
  </>;
}
