0.2.0-alpha.0 • Published 6 years ago

@react-slate/devtools v0.2.0-alpha.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

Build Status MIT License

All Contributors PRs Welcome Chat Code of Conduct

tweet

PackageDescriptionVersion
@react-slate/coreThe core functionality and logic.Version

Website & documentation

https://zamotany.github.io/react-slate/

Features

Please check out Roadmap for in-progress and planned features.

Limitations

  • Web components are not compatible.
  • Strings must be wrapped in a <Text> component.

Installation

yarn add react @react-slate/core

Usage

import React from 'react';
import { render, View, Text } from '@react-slate/core';

function App() {
  return (
    <View width="100%" flexDirection="row" justifyContent="center">
      <Text color="green" bold>Hello world!</Text>
    </View>
  );
}

render(<App />);