Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 457 Bytes

install.md

File metadata and controls

23 lines (17 loc) · 457 Bytes

How to install

Just add it as an npm/yarn dependency:

npm install galio-framework or yarn add galio-framework

And just import the component you want in your application:

import { Text } from 'galio-framework'

This seems really easy right? Just use your component like you would normally do with any other component.

render() {
  return (
    <View>
      <Text p muted>Hi, I'm a Galio component</Text>
    </View>
  );
}