# Welcome!

## Welcome to [Dash Grocery](https://github.com/IcToxi/dash-grocery)!

Dash Grocery is a component library for Dash Plotly. I've collected and wrapped many interesting and useful React components to help you quickly build applications with Dash. True to its name, you'll need it before you're ready to cook a big meal.

## A very quick start.

Dash Grocery can now be quickly installed via `pip`.

`pip install dash-grocery`

It is used like any other Dash component.

```python
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",
        )
    ]
)
```

Click on this to see more.

{% content-ref url="quick-start" %}
[quick-start](https://dash-grocery.gitbook.io/docs/quick-start)
{% endcontent-ref %}

## What are the components?

Dash Grocery mainly wrapped some responsive layouts and widgets components, for now. It will continue to encapsulate more attractive components.

{% content-ref url="reference/components" %}
[components](https://dash-grocery.gitbook.io/docs/reference/components)
{% endcontent-ref %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://dash-grocery.gitbook.io/docs/welcome.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
