/** * This is the entry file of the Direflow setup. * * You can add any additional functionality here. * For example, this is a good place to hook into your * Web Component once it's mounted on the DOM. * * !This file cannot be removed. * It can be left blank if not needed. */ import {{names.pascal}} from './direflow-components/{{names.snake}}'; {{names.pascal}}.then((element) => { /** * Access DOM node when it's mounted */ console.log('{{names.snake}} is mounted on the DOM', element); });