<{{lower}}>
    <style>
        /* Describe the style of this component here. */
    </style>
    
    <!-- Markup this component here. -->

    <script type="ts">
        // Define logics about this component here.
        
        import { {{upper}}Component } from './types'

        function {{upper}}(): {{upper}}Component {
            return {
                state:{}
            }
        }

        export default {{upper}}
        
    </script>
</{{lower}}>