0.0.7 • Published 5 years ago

imprest v0.0.7

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

GitHub issues GitHub

Discord Server Twitter Follow

Imprest

A react component library aimed at those who need a solid foundation of react components and view templates that scale with their projects' needs.

Getting started

To install Imprest run the following command:

yarn add imprest react react-dom @emotion/core @emotion/styled

To use Imprest's components, you must wrap your application with a theme context provider and specifying any valid imprest theme:

import React from "react";
import ReactDOM from "react-dom";

import { Button, lightTheme } from "imprest";
import { ThemeContext } from "@emotion/core";

ReactDOM.render(
  <ThemeContext.Provider value={lightTheme}>
    <Button>Hello world!</Button>
  </ThemeContext.Provider>,
  document.getElementById("root")
);

Why is this project useful

Imprest offers a set of themable, reusable components following a rigid atomic design principle. It does so through the implementation of very specific views that are commonly used across many applications, as well as exposing it's foundational components so that users can implement their own more proprietory views.

How do I get started

Imprest is not yet considered stable for use, for now take a look at the work in progress documentation website.

Please consider contributing if this project could be of any interest or use to you!

Where can I get more help, if I need it

Visit imprest.dev for more information or get in touch via discord or my personal twitter handle @_lukeharris!

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago