mirror of
https://github.com/lainbo/component-party.git
synced 2026-04-05 13:09:03 +08:00
* WIP: add Marko * WTF, vscode * Consistent final newlines * Apply suggestions from code review Everything except for the TS declarations since I think Dylan ought to weigh in Co-authored-by: Michael Rawlings <mirawlings@ebay.com> Co-authored-by: Luke LaValva <lukelavalva@gmail.com> * Feedback: no space before method parens, no TS, else-if, ColorSelect works now * Pre-bugbash updates * This is probably why they want us to provide a linter * Finishing touches * Argle * @rturnq feedback * Match examples to other frameworks --------- Co-authored-by: Michael Rawlings <mirawlings@ebay.com> Co-authored-by: Luke LaValva <lukelavalva@gmail.com> Co-authored-by: tigt <tigt@mortropolis.com>
15 lines
273 B
Plaintext
15 lines
273 B
Plaintext
<h1.title>I am red</h1>
|
|
<button style={ fontSize: "10rem" }>I am a button</button>
|
|
<button class=scopedButton>I am a style-scoped button</button>
|
|
|
|
<style>
|
|
.title {
|
|
color: red;
|
|
}
|
|
</style>
|
|
<style/{ scopedButton }>
|
|
.scopedButton {
|
|
font-size: 10rem;
|
|
}
|
|
</style>
|