/react-neutral

Basic react components working on the web and react-native

Primary LanguageJavaScriptApache License 2.0Apache-2.0

react-neutral

Universal react components working on the web and react-native.

Web components

import React from 'react';
import View, { Text, Image, Anchor } from 'react-native';

return default () => (
  <View>
    <Image src="/profile/zlatko/picture" />
    <Text>Hello, </Text>
    <Anchor href="/profile/zlatko">Zlatko</Anchor>
  </View>
);