Slide 1

Slide 1 text

No content

Slide 2

Slide 2 text

Compilers in styling web UI

Slide 3

Slide 3 text

No content

Slide 4

Slide 4 text

HTML / CSS / JS

Slide 5

Slide 5 text

No content

Slide 6

Slide 6 text

1. 2. Reusability, Portability, & Interoperability

Slide 7

Slide 7 text

+ + + + + + + + + + + + + + +

Slide 8

Slide 8 text

1. 2. Reusability, Portability, & Interoperability Cost of Abstraction & Composition

Slide 9

Slide 9 text

import styled from "styled-components"; export const Button = styled.button` padding: 30px 0; margin: 8px 16px; width: 60px; `; background: transparent; color: white; ${props G> props.primary && css` background: white; color: palevioletred; `};

Slide 10

Slide 10 text

export const OnBrandButton = styled(Button)` color: floralwhite; background: midnightblue; `; import styled from "styled-components"; export const Button = styled.button` padding: 30px 0; margin: 8px 16px; width: 60px; `; background: transparent; color: white; ${props J> props.primary && css` background: white; color: palevioletred; `};

Slide 11

Slide 11 text

export const OnBrandButton = styled(Button)` color: floralwhite; background: midnightblue; `; import styled from "styled-components"; export const Button = styled.button` padding: 30px 0; margin: 8px 16px; width: 60px; `; background: transparent; color: white; ${props J> props.primary && css` background: white; color: palevioletred; `}; import {OnBrandButton} from "./styles";

Slide 12

Slide 12 text

export const OnBrandButton = styled(Button)` color: floralwhite; background: midnightblue; `; import styled from "styled-components"; export const Button = styled.button` padding: 30px 0; margin: 8px 16px; width: 60px; `; background: transparent; color: white; ${props J> props.primary && css` background: white; color: palevioletred; `}; import {OnBrandButton} from "./styles";

Slide 13

Slide 13 text

export const OnBrandButton = styled(Button)` color: floralwhite; background: midnightblue; `; import styled from "styled-components"; export const Button = styled.button` padding: 30px 0; margin: 8px 16px; width: 60px; `; background: transparent; color: white; ${props J> props.primary && css` background: white; color: palevioletred; `}; import {OnBrandButton} from "./styles";

Slide 14

Slide 14 text

import styled from "styled-components"; import {darken, lighten} from "polished"; const Button = styled.button` color: midnightblue; border: 2px solid midnightblue; background: floralwhite; &:hover { color: ${props G> lighten(0.3, "midnightblue")}; border: 2px solid ${props G> lighten(0.3, "midnightblue")}; background: ${props G> darken(0.1, "floralwhite")}; } `; render(Hello World);

Slide 15

Slide 15 text

import styled from "styled-components"; // import {darken, lighten} from "polished"; const Button = styled.button` color: midnightblue; border: 2px solid midnightblue; background: floralwhite; &:hover { color: ${props E> "#4b4bd7"}; border: 2px solid ${props E> "#4b4bd7"}; background: ${props E> "#ffe9bd"}; } `; render(Hello World);

Slide 16

Slide 16 text

import styled, {ThemeProvider} from "styled-components"; import {darken, lighten} from "polished"; const Button = styled.button` color: ${props E> props.theme.fg}; border: 2px solid ${props E> props.theme.fg}; background: ${props E> props.theme.bg}; &:hover { color: ${props E> lighten(0.3, props.theme.fg)}; border: 2px solid ${props E> lighten(0.3, props.theme.fg)}; background: ${props E> darken(0.1, props.theme.bg)}; } `; const theme = { fg: "midnightblue", bg: "floralwhite" }; render( Hello World );

Slide 17

Slide 17 text

via Brandon Dail @aweary

Slide 18

Slide 18 text

via Addy Osmani - “Cost of JavaScript”

Slide 19

Slide 19 text

170 kB JavaScript bundle (gzip) via Addy Osmani - “Cost of JavaScript”

Slide 20

Slide 20 text

170 kB JavaScript bundle (gzip) Moto G4 - Slow 3G via Addy Osmani - “Cost of JavaScript”

Slide 21

Slide 21 text

170 kB JavaScript bundle (gzip) ~3.4 s in Fetch Moto G4 - Slow 3G via Addy Osmani - “Cost of JavaScript”

Slide 22

Slide 22 text

~2.0 s in Parse/Compile 170 kB JavaScript bundle (gzip) ~3.4 s in Fetch Moto G4 - Slow 3G via Addy Osmani - “Cost of JavaScript”

Slide 23

Slide 23 text

~2.0 s in Parse/Compile 170 kB JavaScript bundle (gzip) ~3.4 s in Fetch ~1.5 s in Execution Moto G4 - Slow 3G via Addy Osmani - “Cost of JavaScript”

Slide 24

Slide 24 text

Tradeoff between UX and DX

Slide 25

Slide 25 text

UX (performance)

Slide 26

Slide 26 text

DX UX (performance)

Slide 27

Slide 27 text

CSS UX (performance) DX

Slide 28

Slide 28 text

Sass/Less CSS UX (performance) DX

Slide 29

Slide 29 text

CSS Modules Sass/Less CSS UX (performance) DX

Slide 30

Slide 30 text

CSS-in-JS CSS Modules Sass/Less CSS UX (performance) DX

Slide 31

Slide 31 text

CSS-in-JS CSS Modules Sass/Less CSS UX (performance) DX Bundle cost }

Slide 32

Slide 32 text

CSS-in-JS CSS Modules Sass/Less CSS UX (performance) DX } Parse cost Bundle cost

Slide 33

Slide 33 text

CSS-in-JS CSS Modules Sass/Less CSS UX (performance) DX } Execution cost Parse cost Bundle cost

Slide 34

Slide 34 text

Vendor prefixing

Slide 35

Slide 35 text

LTR-to-RTL Vendor prefixing

Slide 36

Slide 36 text

LTR-to-RTL and more… Vendor prefixing

Slide 37

Slide 37 text

1. Forgo build tooling for dynamic styles 2.Ship build tooling to browsers 3.Forgo dynamic styles

Slide 38

Slide 38 text

No content

Slide 39

Slide 39 text

No content

Slide 40

Slide 40 text

Primary Secondary Tertiary Normal blue Normal gray Normal red

Slide 41

Slide 41 text

Primary Secondary Tertiary Normal blue Normal gray Normal red Hover 25% darker Hover 25% darker Hover 25% darker ! !

Slide 42

Slide 42 text

Primary Secondary Tertiary Normal blue Normal gray Normal red Hover 25% darker Hover 25% darker Hover 25% darker ! ! Normal Hover 80% lighter Normal Hover 80% lighter Normal Hover 80% lighter ! ! Enabled ✅ Disabled ❌

Slide 43

Slide 43 text

type state = { variant: "primary" | "secondary" | "tertiary", disabled: boolean, hover: boolean };

Slide 44

Slide 44 text

type state = { variant: "primary" | "secondary" | "tertiary", disabled: boolean };

Slide 45

Slide 45 text

type state = { variant: "primary" | "secondary" | "tertiary", disabled: boolean }; const Button = (props: state) >> ({ background: { primary: props.disabled ? lighten("blue", 90) : "blue", secondary: props.disabled ? lighten("gray", 90) : "gray", tertiary: props.disabled ? lighten("red", 90) : "red" }[props.variant] });

Slide 46

Slide 46 text

type state = { variant: "primary" | "secondary" | "tertiary", disabled: boolean }; const Button = (props: state) >> ({ background: { primary: props.disabled ? lighten("blue", 90) : "blue", secondary: props.disabled ? lighten("gray", 90) : "gray", tertiary: props.disabled ? lighten("red", 90) : "red" }[props.variant], "&:hover": { background: !props.disabled && { primary: darken("blue", 25), secondary: darken("gray", 25), tertiary: darken("red", 25) }[props.variant] } });

Slide 47

Slide 47 text

✅ ❌ ✅ ❌ # #

Slide 48

Slide 48 text

type state = { variant: "primary" | "secondary" | "tertiary", disabled: boolean }; const Button = (props: state) >> ({ background: { primary: props.disabled ? lighten("blue", 90) : "blue", secondary: props.disabled ? lighten("gray", 90) : "gray", tertiary: props.disabled ? lighten("red", 90) : "red" }[props.variant], "&:hover": { background: !props.disabled && { primary: darken("blue", 25), secondary: darken("gray", 25), tertiary: darken("red", 25) }[props.variant] } });

Slide 49

Slide 49 text

type state = { variant: "primary" | "secondary" | "tertiary", disabled: boolean }; const Button = (props: state) >> ({ background: { primary: props.disabled ? lighten("blue", 90) : "blue", secondary: props.disabled ? lighten("gray", 90) : "gray", tertiary: props.disabled ? lighten("red", 90) : "red" }[props.variant], "&:hover": { background: !props.disabled && { primary: darken("blue", 25), secondary: darken("gray", 25), tertiary: darken("red", 25) }[props.variant] } }); const dynamicStyle = await ( await fetch("https://css-in-js.io/json") ).json(); const dynamicProp = dynamicStyle.prop; const dynamicVal = dynamicStyle.val;

Slide 50

Slide 50 text

type state = { variant: "primary" | "secondary" | "tertiary", disabled: boolean }; const Button = (props: state) >> ({ background: { primary: props.disabled ? lighten("blue", 90) : "blue", secondary: props.disabled ? lighten("gray", 90) : "gray", tertiary: props.disabled ? lighten("red", 90) : "red" }[props.variant], "&:hover": { background: !props.disabled && { primary: darken("blue", 25), secondary: darken("gray", 25), tertiary: darken("red", 25) }[props.variant] } }); const dynamicStyle = await ( await fetch("https://css-in-js.io/json") ).json(); const dynamicProp = dynamicStyle.prop; const dynamicVal = dynamicStyle.val; const style = { color: "red", padding: "4px", [dynamicProp]: dynamicVal };

Slide 51

Slide 51 text

type state = { variant: "primary" | "secondary" | "tertiary", disabled: boolean }; const Button = (props: state) >> ({ background: { primary: props.disabled ? lighten("blue", 90) : "blue", secondary: props.disabled ? lighten("gray", 90) : "gray", tertiary: props.disabled ? lighten("red", 90) : "red" }[props.variant], "&:hover": { background: !props.disabled && { primary: darken("blue", 25), secondary: darken("gray", 25), tertiary: darken("red", 25) }[props.variant] } }); const dynamicStyle = await ( await fetch("https://css-in-js.io/json") ).json(); const dynamicProp = dynamicStyle.prop; const dynamicVal = dynamicStyle.val; const style = { color: "red", padding: "4px", [dynamicProp]: dynamicVal }; Conditional logic ≠ Dynamic styles

Slide 52

Slide 52 text

! Dynamic styles ! Dynamic styles ! Dynamic styles Static styles ! Dynamic styles Static styles + Conditional logic

Slide 53

Slide 53 text

No content

Slide 54

Slide 54 text

Label { color: red; } Label:hover { color: white; } Label:prop(mode == "emphasis") { font-weight: bold; } import {Label} from "./styles.css"

Slide 55

Slide 55 text

1. Enable higher levels of abstraction 2. Optimizing your code 3. Finding bugs in your code

Slide 56

Slide 56 text

fn int_to_string (x : u32) { match x { 0 | 1 => "zero or one", 2 ... 4 => "two through four", 5 => "five!", } }

Slide 57

Slide 57 text

fn int_to_string (x : u32) { match x { 0 | 1 => "zero or one", 2 ... 4 => "two through four", 5 => "five!", } }

Slide 58

Slide 58 text

fn int_to_string (x : u32) { match x { 0 | 1 => "zero or one", 2 ... 4 => "two through four", 5 => "five!", _ => "six or greater", } }

Slide 59

Slide 59 text

type state = { variant: "primary" | "secondary" | "tertiary", disabled: boolean }; const Button = (props: state) >> ({ background: { primary: props.disabled ? lighten("blue", 90) : "blue", secondary: props.disabled ? lighten("gray", 90) : "gray", tertiary: props.disabled ? lighten("red", 90) : "red" }[props.variant], "&:hover": { background: !props.disabled && { primary: darken("blue", 25), secondary: darken("gray", 25), tertiary: darken("red", 25) }[props.variant] } });

Slide 60

Slide 60 text

Button [ ] type state = { variant: "primary" | "secondary" | "tertiary", disabled: boolean }; const Button = (props: state) @> ({ background: { primary: props.disabled ? lighten("blue", 90) : "blue", secondary: props.disabled ? lighten("gray", 90) : "gray", tertiary: props.disabled ? lighten("red", 90) : "red" }[props.variant], "&:hover": { background: !props.disabled && { primary: darken("blue", 25), secondary: darken("gray", 25), tertiary: darken("red", 25) }[props.variant] } });

Slide 61

Slide 61 text

Button [ @variant = "primary" | "secondary" | "tertiary" @disabled = boolean ] type state = { variant: "primary" | "secondary" | "tertiary", disabled: boolean }; const Button = (props: state) A> ({ background: { primary: props.disabled ? lighten("blue", 90) : "blue", secondary: props.disabled ? lighten("gray", 90) : "gray", tertiary: props.disabled ? lighten("red", 90) : "red" }[props.variant], "&:hover": { background: !props.disabled && { primary: darken("blue", 25), secondary: darken("gray", 25), tertiary: darken("red", 25) }[props.variant] } });

Slide 62

Slide 62 text

Button [ @variant = "primary" | "secondary" | "tertiary" @disabled = boolean background @variant { "primary" <> blue "secondary" <> gray "tertiary" <> red } ] type state = { variant: "primary" | "secondary" | "tertiary", disabled: boolean }; const Button = (props: state) <> ({ background: { primary: props.disabled ? lighten("blue", 90) : "blue", secondary: props.disabled ? lighten("gray", 90) : "gray", tertiary: props.disabled ? lighten("red", 90) : "red" }[props.variant], "&:hover": { background: !props.disabled && { primary: darken("blue", 25), secondary: darken("gray", 25), tertiary: darken("red", 25) }[props.variant] } });

Slide 63

Slide 63 text

Button [ @variant = "primary" | "secondary" | "tertiary" @disabled = boolean background (@variant, @disabled) { ("primary", false) @> blue ("primary", true) @> blue ("secondary", false) @> gray ("secondary", true) @> gray ("tertiary", false) @> red ("tertiary", true) @> red } ] type state = { variant: "primary" | "secondary" | "tertiary", disabled: boolean }; const Button = (props: state) @> ({ background: { primary: props.disabled ? lighten("blue", 90) : "blue", secondary: props.disabled ? lighten("gray", 90) : "gray", tertiary: props.disabled ? lighten("red", 90) : "red" }[props.variant], "&:hover": { background: !props.disabled && { primary: darken("blue", 25), secondary: darken("gray", 25), tertiary: darken("red", 25) }[props.variant] } });

Slide 64

Slide 64 text

Button [ @variant = "primary" | "secondary" | "tertiary" @disabled = boolean background (@variant, @disabled) { ("primary", false) @> blue ("primary", true) @> blue BC lighten(90) ("secondary", false) @> gray ("secondary", true) @> gray BC lighten(90) ("tertiary", false) @> red ("tertiary", true) @> red BC darken(90) } ] type state = { variant: "primary" | "secondary" | "tertiary", disabled: boolean }; const Button = (props: state) @> ({ background: { primary: props.disabled ? lighten("blue", 90) : "blue", secondary: props.disabled ? lighten("gray", 90) : "gray", tertiary: props.disabled ? lighten("red", 90) : "red" }[props.variant], "&:hover": { background: !props.disabled && { primary: darken("blue", 25), secondary: darken("gray", 25), tertiary: darken("red", 25) }[props.variant] } });

Slide 65

Slide 65 text

Button [ @variant = "primary" | "secondary" | "tertiary" @disabled = boolean background (@variant, @disabled, @:hover) { ("primary", false, false) B> blue ("primary", false, true) B> blue DE darken(25) ("primary", true, _) B> blue DE lighten(90) ("secondary", false, false) B> gray ("secondary", false, true) B> gray DE darken(25) ("secondary", true, _) B> gray DE lighten(90) ("tertiary", false, false) B> red ("tertiary", false, true) B> red DE darken(25) ("tertiary", true, _) B> red DE lighten(90) } ] type state = { variant: "primary" | "secondary" | "tertiary", disabled: boolean }; const Button = (props: state) B> ({ background: { primary: props.disabled ? lighten("blue", 90) : "blue", secondary: props.disabled ? lighten("gray", 90) : "gray", tertiary: props.disabled ? lighten("red", 90) : "red" }[props.variant], "&:hover": { background: !props.disabled && { primary: darken("blue", 25), secondary: darken("gray", 25), tertiary: darken("red", 25) }[props.variant] } });

Slide 66

Slide 66 text

Button [ @variant = "primary" | "secondary" | "tertiary" @disabled = boolean background (@variant, @disabled, @:hover) { ("primary", false, false) B> blue ("primary", false, true) B> blue DE darken(25) ("primary", true, _) B> blue DE lighten(90) ("secondary", false, false) B> gray ("secondary", false, true) B> gray DE darken(25) ("secondary", true, _) B> gray DE lighten(90) ("tertiary", false, false) B> red ("tertiary", false, true) B> red DE darken(25) ("tertiary", true, _) B> red DE lighten(90) } ] type state = { variant: "primary" | "secondary" | "tertiary", disabled: boolean }; const Button = (props: state) B> ({ background: { primary: props.disabled ? lighten("blue", 90) : "blue", secondary: props.disabled ? lighten("gray", 90) : "gray", tertiary: props.disabled ? lighten("red", 90) : "red" }[props.variant], "&:hover": { background: !props.disabled && { primary: darken("blue", 25), secondary: darken("gray", 25), tertiary: darken("red", 25) }[props.variant] } });

Slide 67

Slide 67 text

Button [ @variant = "primary" | "secondary" | "tertiary" @disabled = boolean background (@variant, @disabled, @:hover) { ("primary", false, false) B> blue ("primary", false, true) B> #4887ba ("primary", true, _) B> #c2deff ("secondary", false, false) B> gray ("secondary", false, true) B> #9b9b9b ("secondary", true, _) B> #dfdfdf ("tertiary", false, false) B> red ("tertiary", false, true) B> #be455a ("tertiary", true, _) B> #ffd3d8 } ] type state = { variant: "primary" | "secondary" | "tertiary", disabled: boolean }; const Button = (props: state) B> ({ background: { primary: props.disabled ? lighten("blue", 90) : "blue", secondary: props.disabled ? lighten("gray", 90) : "gray", tertiary: props.disabled ? lighten("red", 90) : "red" }[props.variant], "&:hover": { background: !props.disabled && { primary: darken("blue", 25), secondary: darken("gray", 25), tertiary: darken("red", 25) }[props.variant] } });

Slide 68

Slide 68 text

Button [ @variant = "primary" | "secondary" | "tertiary" @disabled = boolean background (@variant, @disabled, @:hover) { ("primary", false, false) B> blue ("primary", false, true) B> blue DE darken(25) ("primary", true, _) B> blue DE lighten(90) ("secondary", false, false) B> gray ("secondary", false, true) B> gray DE darken(25) ("secondary", true, _) B> gray DE lighten(90) ("tertiary", false, false) B> red ("tertiary", false, true) B> red DE darken(25) ("tertiary", true, _) B> red DE lighten(90) } ] Element Style Sheets Experimental!

Slide 69

Slide 69 text

CSS ESS +

Slide 70

Slide 70 text

Button [ @variant = "primary" | "secondary" | "tertiary" @disabled = boolean background (@variant, @disabled, @:hover) { ("primary", false, false) B> blue ("primary", false, true) B> blue DE darken(25) ("primary", true, _) B> blue DE lighten(90) ("secondary", false, false) B> gray ("secondary", false, true) B> gray DE darken(25) ("secondary", true, _) B> gray DE lighten(90) ("tertiary", false, false) B> red ("tertiary", false, true) B> red DE darken(25) ("tertiary", true, _) B> red DE lighten(90) } ] import {Button} from "./styles.ess"; const App = () B> (
Hello World Hi
);

Slide 71

Slide 71 text

Button [ @variant = "primary" | "secondary" | "tertiary" @disabled = boolean background (@variant, @disabled, @:hover) { ("primary", false, false) B> blue ("primary", false, true) B> blue DE darken(25) ("primary", true, _) B> blue DE lighten(90) ("secondary", false, false) B> gray ("secondary", false, true) B> gray DE darken(25) ("secondary", true, _) B> gray DE lighten(90) ("tertiary", false, false) B> red ("tertiary", false, true) B> red DE darken(25) ("tertiary", true, _) B> red DE lighten(90) } ] .a { background: blue } .b:hover { background: #4887ba } .c, .c:hover { background: #c2deff } .d { background: gray } .e { background: #9b9b9b } .f, .f:hover { background: #dfdfdf } .g { background: red } .h:hover { background: #be455a } .i, .i:hover { background: #ffd3d8 } import {Button} from "./styles.ess"; const App = () B> (
Hello World Hi
);

Slide 72

Slide 72 text

Button [ @variant = "primary" | "secondary" | "tertiary" @disabled = boolean background (@variant, @disabled, @:hover) { ("primary", false, false) B> blue ("primary", false, true) B> blue DE darken(25) ("primary", true, _) B> blue DE lighten(90) ("secondary", false, false) B> gray ("secondary", false, true) B> gray DE darken(25) ("secondary", true, _) B> gray DE lighten(90) ("tertiary", false, false) B> red ("tertiary", false, true) B> red DE darken(25) ("tertiary", true, _) B> red DE lighten(90) } ] export const Button = props B> { const {variant, disabled, ...rest} = props; return
; }; function buttonClassName({variant, disabled}) { switch (variant) { case "primary": if (disabled) return "c"; return "a b"; case "secondary": if (disabled) return "f"; return "d e"; case "tertiary": if (disabled) return "i"; return "g h"; } } .a { background: blue } .b:hover { background: #4887ba } .c, .c:hover { background: #c2deff } .d { background: gray } .e { background: #9b9b9b } .f, .f:hover { background: #dfdfdf } .g { background: red } .h:hover { background: #be455a } .i, .i:hover { background: #ffd3d8 } import {Button} from "./styles.ess"; const App = () B> (
Hello World Hi
);

Slide 73

Slide 73 text

Button [ @variant = "primary" | "secondary" | "tertiary" @disabled = boolean background (@variant, @disabled, @:hover) { ("primary", false, false) B> blue ("primary", false, true) B> blue DE darken(25) ("primary", true, _) B> blue DE lighten(90) ("secondary", false, false) B> gray ("secondary", false, true) B> gray DE darken(25) ("secondary", true, _) B> gray DE lighten(90) ("tertiary", false, false) B> red ("tertiary", false, true) B> red DE darken(25) ("tertiary", true, _) B> red DE lighten(90) } ] .button--variant-primary { background: blue } .button--variant-primary:hover { background: #4887ba } .button--variant-primary.button--disabled, .button--variant-primary.button--disabled:hover { background: #c2deff } .button--variant-secondary { background: gray } .button--variant-secondary:hover { background: #9b9b9b } .button--variant-secondary.button--disabled, .button--variant-secondary.button--disabled:hover { background: #dfdfdf } .button--variant-tertiary { background: red } .button--variant-tertiary:hover { background: #be455a } .button--variant-tertiary.button--disabled, .button--variant-tertiary.button--disabled:hover { background: #ffd3d8 }

Slide 74

Slide 74 text

Plain CSS (BEM) Element Style Sheets React Preact React Native ?

Slide 75

Slide 75 text

background: silver padding: 14px min-height: 500px background: teal padding: 14px min-height: 500px background: silver text-align: center border-radius: 3px color: #fff background: teal text-align: center border-radius: 3px color: #fff

Slide 76

Slide 76 text

background: silver padding: 14px min-height: 500px background: teal padding: 14px min-height: 500px background: silver text-align: center border-radius: 3px color: #fff background: teal text-align: center border-radius: 3px color: #fff .a { } .g { } .c { } .b { } .d { } .e { } .f { } background: silver background: teal padding: 14px min-height: 500px text-align: center border-radius: 3px color: #fff Atomic CSS "a b c f" "a b c g" "d e f" "d e g"

Slide 77

Slide 77 text

background: silver padding: 14px min-height: 500px background: teal padding: 14px min-height: 500px background: silver text-align: center border-radius: 3px color: #fff background: teal text-align: center border-radius: 3px color: #fff .a { } .g { } .c { } .b { } .d { } .e { } .f { } background: silver background: teal padding: 14px min-height: 500px text-align: center border-radius: 3px color: #fff Atomic CSS .a { } .c { } .b { } .d { } background: silver background: teal padding: 14px min-height: 500px text-align: center border-radius: 3px color: #fff Atomic++ CSS "a c" "a d" "b c" "b d"

Slide 78

Slide 78 text

CSS-in-JS CSS Modules Sass/Less CSS UX (performance) DX

Slide 79

Slide 79 text

Compile to CSS and JS DX UX (performance) CSS-in-JS CSS Modules Sass/Less CSS

Slide 80

Slide 80 text

Thank you! @rtsao