Last active
August 26, 2020 04:55
-
-
Save olopsman/f1c1161c6eb255b317facf4b3e154876 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {LightningElement, api, track} from 'lwc'; | |
export default class Course extends LightningElement { | |
@api courseTitle; | |
@track courseLevel = 'Beginner'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment