Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 802 Bytes

File metadata and controls

38 lines (25 loc) · 802 Bytes

rn-ramen

A delicious component library for React Native based un styled system and inspired by Charka UI

Installing React Native Ramen UI

To use React Native Ramen components, all you need to do is install the rn-ramen package and its peer dependencies:

$ yarn add @rn-ramen @emotion/react@next @emotion/native@next emotion-theming@next

# or

$ npm install @rn-ramen @emotion/react@next @emotion/native@next emotion-theming@next

Usage

To start using the components, please follow these steps:

  1. Wrap your application with the ThemeProvider provided by rn-ramen.
import { ThemeProvider } from "rn-ramen".

// Do this at the root of your application
const App = ({ children }) => (
  <ThemeProvider>
    {children}
  </ThemeProvider>
);

License

MIT