Cdn example from docs does not work

i followed docs create exactly the code in docs and it creates this error

Uncaught SyntaxError SyntaxError: The requested module ‘https://releases.transloadit.com/uppy/v3.7.0/uppy.min.js’ does not provide an export named ‘DragDrop’
at (program) (c:\Users\belos\source\repos\testUppy\index.html:11:22)

this is my code:

<!-- 1. Add CSS to `<head>` -->
<head>
    <link href="https://releases.transloadit.com/uppy/v3.7.0/uppy.min.css" rel="stylesheet">
    
</head>
<body>
    <!-- 2. Initialize -->
    <div id="uppy"></div>
    
    <script type="module">
      import { Uppy, DragDrop } from "https://releases.transloadit.com/uppy/v3.7.0/uppy.min.js"
      const uppy = new Uppy()
      uppy.use(DragDrop, { target: '#uppy' })
    </script>
</body>