Wk-notes-11-11-migrating-typescript-git-remote-label-Emotion-controlled-component
Add Definition ts (
.d.ts
) for vscode only, remember to install@types
dev dependency for external types to make it work
Attention: js code will not be checked unless adding // @ts-check
For <Toggle/>/<Switch/> control Component, label solution:
<react-switch/>
there is a recommended way to wrap control by<label/>
, more for accessibility and semantic html.Emotion css-in-js solution
A pure css-in-js solution, framework agnostic (use
css()
to create class,cx()
to compose)Allow nested css, e.g. mediaquery, nested tag and className
Able to edit element directly
Use "Reflection" to check if the Component is controlled or not. A pattern for mixed control component
Git remote command
Keep forked repo up-to-date
Last updated
Was this helpful?