mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 05:22:23 +00:00
26 lines
639 B
Plaintext
26 lines
639 B
Plaintext
---input---
|
|
<button onClick={e => e.preventDefault ()} />
|
|
|
|
---tokens---
|
|
'<' Punctuation
|
|
'button' Name.Tag
|
|
' ' Text.Whitespace
|
|
'onClick' Name.Attribute
|
|
'=' Operator
|
|
'{' Punctuation
|
|
'e' Name.Other
|
|
' ' Text.Whitespace
|
|
'=>' Punctuation
|
|
' ' Text.Whitespace
|
|
'e' Name.Other
|
|
'.' Punctuation
|
|
'preventDefault' Name.Other
|
|
' ' Text.Whitespace
|
|
'(' Punctuation
|
|
')' Punctuation
|
|
'}' Punctuation
|
|
' ' Text.Whitespace
|
|
'/' Punctuation
|
|
'>' Punctuation
|
|
'\n' Text.Whitespace
|