If you want to import it as a default, like you did with import kurals from './kurals';, then it must be exported as default:
export default [];
Since you exported it with export const kurals = []; then it's a property of the exported object and you need to destructure it:
import { kurals } from './kurals';