I'm using react CDN in my website to make some part of the page reactive. I don't know how I can combine both type into one like type="module,text/babel"
<script type="text/babel" src="script_file" />
and
<script type="module" src="script_file />
Babel for JSX and module so I can use Import/export in the files to include one file function into another file.
Thanks in advance.