how to enable linewrapping in vercel

I wrote the following code, hoping that when the content is too long, it will automatically wrap

      <CodeMirror
        editable={editable}
        value={code}
        minHeight="300px"
        extensions={[StreamLanguage.define(go)]}
        theme={tokyoNight}
        onChange={(value) => onChange(value)}
        linewrapping="true"
      />

but it doesn’t work: