To make my code more readable I would like to split all my functions into different files. I have tried:
import {myExport} from '/function.js'
but unfortunately, this isn't working. Any ideas on how to make the index.js as a single entry point?
To make my code more readable I would like to split all my functions into different files. I have tried:
import {myExport} from '/function.js'
but unfortunately, this isn't working. Any ideas on how to make the index.js as a single entry point?