IcToxi / dash-grocery

Dash Grocery is a Dash component library designed to collect interesting and useful React projects to wrap.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

➕➖✖➗

Language grade: Python Total alerts Language grade: JavaScript Language grade: Python

Dash Grocery

Dash Grocery is a Dash component library. The purpose of this package is to collect interesting and useful React projects to wrap. I'm excited to have the first release, PRs are welcome!

Quickstart

import dash_grocery
from dash import Dash, html

app = Dash(__name__)

app.layout = html.Div(
    [
        dash_grocery.Textfit(
            dash_grocery.Clock(format="dddd, MMMM Mo, YY, HH:mm:ss", ticking=True),
            max=400,
            mode="single",
        )
    ]
)


if __name__ == "__main__":
    app.run(debug=True)

Contributing

  1. Clone the project locally.
gh repo clone IcToxi/dash-grocery
  1. Install dependencies.
yarn
  1. Create your component under ./src/lib/components and edit the index.js.
  2. Create a branch and raise a PR, it would be nice to have a detailed description.

TODO

  1. Update documentation.
  2. More interesting components.

About

Dash Grocery is a Dash component library designed to collect interesting and useful React projects to wrap.

License:MIT License


Languages

Language:JavaScript 89.9%Language:Python 10.1%