JSFiddle - React, Tailwind, and code Playground

by Oski Krawczyk

HTML

<script src="https://runpkg.com/?@lwc/[email protected]/dist/engine.js"></script>
<template>
	<button class="btn">
    Hello { name }!
  </button>
</template>

JavaScript

–≠import { LightningElement, api } from 'lwc';
export default class Foo extends LightningElement {
	 @api name = 'World';
}