➕➖✖➗ |
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!
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)
- Clone the project locally.
gh repo clone IcToxi/dash-grocery
- Install dependencies.
yarn
- Create your component under
./src/lib/components
and edit theindex.js
. - Create a branch and raise a PR, it would be nice to have a detailed description.
- Update documentation.
- More interesting components.