import React from 'react';

import {
  ParagraphComponent
} from '@alicloud/console-components';

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

export default function Testing({
  component
}: ITestingProps<ParagraphComponent>): JSX.Element {
  const Paragraph = component;
  
  return <>
    <Paragraph>{LOREM}</Paragraph>
    <br />
    <Paragraph type="short">{LOREM}</Paragraph>
  </>;
}
