@instructure/ui-tabs
v10.10.0
Published
A UI component library made by Instructure Inc.
Downloads
21,703
Maintainers
Keywords
Readme
category: packages
ui-tabs
Components
The ui-tabs
package contains the following:
Installation
npm install @instructure/ui-tabs
Usage
---
type: code
---
import React from 'react'
import { Tabs } from '@instructure/ui-tabs'
export default MyTabs = function () {
return (
<Tabs>
<Tabs.Panel renderTitle="First Tab">
Tab One
</Tabs.Panel>
<Tabs.Panel renderTitle="Second Tab" isSelected>
Tab Two
</Tabs.Panel>
<Tabs.Panel renderTitle="Third Tab" isDisabled>
Tab Three
</Tabs.Panel>
</Tabs>
)
}