# Entrypoint

You need to have an entrypoint for an EllJo application. The entrypoint is typically in your main.js file. There you import your index component and mount it to a html element.

import Index from './src/index.jo'
import EllJo from '@elljo/runtime'

const ellJo = new EllJo();
ellJo.mount(Index, '#app')