From 96c9879e658f90544e61eaf677f1f969aaccea46 Mon Sep 17 00:00:00 2001 From: Qiusheng Wu Date: Sat, 20 Apr 2024 22:37:11 -0400 Subject: [PATCH] Add ui module (#11) --- docs/ui.md | 3 +++ hypercoast/ui.py | 4 ++++ mkdocs.yml | 1 + 3 files changed, 8 insertions(+) create mode 100644 docs/ui.md create mode 100644 hypercoast/ui.py diff --git a/docs/ui.md b/docs/ui.md new file mode 100644 index 00000000..47639640 --- /dev/null +++ b/docs/ui.md @@ -0,0 +1,3 @@ +# ui module + +::: hypercoast.ui diff --git a/hypercoast/ui.py b/hypercoast/ui.py new file mode 100644 index 00000000..cfe6039f --- /dev/null +++ b/hypercoast/ui.py @@ -0,0 +1,4 @@ +"""This module contains the user interface for the hypercoast package. +""" + +import ipywidgets as widgets diff --git a/mkdocs.yml b/mkdocs.yml index 9c969b07..69c61f24 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -85,3 +85,4 @@ nav: - common module: common.md - emit module: emit.md - hypercoast module: hypercoast.md + - ui module: ui.md