We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently WCC can handle .jsx and .ts file independtly, but not at the same time. Let's change that!
So basically someone could a component like
interface User { name: string; } export default class Greeting extends HTMLElement { connectedCallback() { this.user: User = { name: this.getAttribute('name') || 'World' }; this.render(); } render() { const { name } = this; return (<h3>Hello ${user.name}! 👋</h3>) } } customElements.define('x-greeting', Greeting);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Summary
Currently WCC can handle .jsx and .ts file independtly, but not at the same time. Let's change that!
Details
So basically someone could a component like
The text was updated successfully, but these errors were encountered: