docs/api/inputs/dates.md
/// marimo-embed
@app.cell
def __():
date = mo.ui.date(label="Start Date")
return
@app.cell
def __():
mo.hstack([date, mo.md(f"Has value: {date.value}")])
return
///
::: marimo.ui.date :members:
@app.cell
def __():
datetime = mo.ui.datetime(label="Start Date")
return
@app.cell
def __():
mo.hstack([datetime, mo.md(f"Has value: {datetime.value}")])
return
::: marimo.ui.datetime :members:
/// marimo-embed
@app.cell
def __():
date_range = mo.ui.date_range(label="Start Date")
return
@app.cell
def __():
mo.hstack([date_range, mo.md(f"Has value: {date_range.value}")])
return
///
::: marimo.ui.date_range :members: