Atomic Component Principles
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
<Form>
<Label>Search</Label>
<Input />
</Form><Form onSubmit={ onSubmit }>
<Label>Search</Label>
<Input type="text" value={ search } />
<Button type="submit">Search</Button>
</Form><Header>
<Navigator>
<Brand />
<NavItem to="home">Home</NavItem>
<NavItem to="about">About</NavItem>
<NavItem to="blog">Blog</NavItem>
</Navigator>
<SearchForm />
</Header>