```jsx
import Flex from '@ui/components/Flex';
const types = ['basic', 'cnnct', 'delete', 'error', 'fn', 'head', 'get', 'link', 'options', 'patch', 'post', 'put', 'trace'];

<Flex justify="around">
  {types.map(type => <Method key={type} type={type} width={40} />)}
</Flex>;
```
