0.1.1 • Published 1 year ago

elena-react-ui v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Elena-React-UI

Descriptrion

React UI kit for elena's own projects (at least for now)

Installing Elena-React-UI

$ yarn add elena-react-ui
# or
$ npm install --save elena-react-ui

Usage

import { Stack, Box } from 'elena-react-ui';

const Example = () => {
  return (
    <Stack>
      <Box>Yay!</Box>
      <Box>I'm using elena's own react ui kit</Box>
    </Stack>
  );
};