-
Notifications
You must be signed in to change notification settings - Fork 2
Action Bar
brandonk1234 edited this page Dec 5, 2016
·
8 revisions
The Action bar is generally presented at the top of each page throughout the whole of the app.
There are no props needed for this component, you pass in what you want to render inside the actionBar as a child of the component. Look at example for a better understanding.
<ActionBar>
<Button
text="Action Bar button"
type="primary"
icon="action"/>
<SearchBar
/>
<Pagination
currentPage={2}
totalPages={5}
buttonType="secondary"
className="course"/>
</ActionBar>