0.1.1 • Published 2 years ago

react-native-trivium v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

react-native-trivium

simple react native component

Installation

npm install react-native-trivium

Usage

import Brand, { ListTv } from 'react-native-trivium';

// ...

import * as React from 'react';

import { StyleSheet, View } from 'react-native';
import Brand, { ListTv } from 'react-native-trivium';

export default function App() {
  return (
    <View style={styles.container}>
      <View
        style={{
          marginTop: 100,
          justifyContent: 'center',
          alignContent: 'flex-end',
        }}
      >
        <Brand />
        <ListTv />
      </View>
    </View>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    alignItems: 'center',
    backgroundColor: 'white',
  },
  box: {
    width: 60,
    height: 60,
    marginVertical: 20,
  },
});

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT


Made with create-react-native-library