Last updated 5 years ago
Was this helpful?
Think of them as Lego bricks
Build small components that together build larger components, screens
Composition is key!
We compose these bricks to build larger things
<!-- LoginForm.js --> <Form> <FormGroup> <Label>Username</Label> <Input name="username" /> <Label>Password</Label> <Input name="password" /> </FormGroup> <Button>Submit</Button> </Form>