import React from 'react';

import {
  H1,
  Alert
} from '@alicloud/demo-rc-elements';

import TestingClass from './testing-class';
import TestingCreate from './testing-create';
import TestingHook from './testing-hook';

export default function DemoField(): JSX.Element {
  return <>
    <H1>Field</H1>
    <Alert type="warning">Field 不是组件！！Field is NOT a component!</Alert>
    <TestingClass />
    <TestingCreate />
    <TestingHook />
  </>;
}
