8000 GitHub - gingeriale/pijma: Yet another user interface components library. Weird. Slow. Our own.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
forked from qiwi/pijma

Yet another user interface components library. Weird. Slow. Our own.

License

Notifications You must be signed in to change notification settings

gingeriale/pijma

 
 

Repository files navigation

Pijma

Build Status Snyk Vulnerabilities for GitHub Repo npm (scoped) npm (scoped) npm (scoped)
Yet another user interface components library. Weird. Slow. Our own.

Demo

Usage

yarn add @qiwi/pijma-core @qiwi/pijma-desktop
import React from 'react'
import {
  cache,
  CacheProvider,
  ThemeProvider,
  Global,
  themes,
  fonts,
  reset,
} from '@qiwi/pijma-core'

import { Button } from '@qiwi/pijma-desktop'

const App: React.FC = () => {
  return (
    <CacheProvider value={cache}>
      <ThemeProvider theme={themes.orange}>
        <Global styles={[reset, fonts]}/>
        <Button type='submit' kind='brand' size='accent' text='Button'/>
      </ThemeProvider>
    </CacheProvider>
  )
}

export default App

Development

Cmd
Install yarn i && yarn bootstrap
Preview yarn watch
Build yarn build
Test yarn test
Environments
  • production
  • development (default)
NODE_ENV=production yarn build

About

Yet another user interface components library. Weird. Slow. Our own.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 98.1%
  • JavaScript 1.9%
0