naboar-ui
v2.0.1
Published
Component Lib
Downloads
22
Readme
NABOAR UI Component Library
Intro
Naboar is a UI component library built for React apps using typescript.
Usage
Documentation can be found here
At a glance
install these peer deps.
"peerDependencies": {
"react": "^16.4.0",
"react-dom": "^16.4.0",
"styled-components": "^4.1.3"
}Install the components
npm install --save naboar
Wrap app in Themer, and pass it an optional theme object with overrides to the default theme.
The default theme is found here
import { Themer } from 'naboar'
function App() {
return (
<Themer theme={yourTheme}>
{/* your app here */}
</Themer>
)
}