Skip to content

Commit bcb310f

Browse files
authored
Switch to TypeScript (#40)
1 parent 3aecbaf commit bcb310f

14 files changed

+1087
-509
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# <img src="https://raw.githubusercontent.com/reactive-python/reactpy/main/branding/svg/reactpy-logo-square.svg" align="left" height="45"/> ReactPy Router
22

33
<p>
4-
<a href="https://github.com/reactive-python/reactpy-router/actions?query=workflow%3ATest">
5-
<img src="https://github.com/reactive-python/reactpy-router/workflows/Test/badge.svg?event=push">
4+
<a href="https://github.com/reactive-python/reactpy-router/actions/workflows/test-src.yaml">
5+
<img src="https://github.com/reactive-python/reactpy-router/actions/workflows/test-src.yaml/badge.svg">
66
</a>
77
<a href="https://pypi.python.org/pypi/reactpy-router">
88
<img src="https://img.shields.io/pypi/v/reactpy-router.svg?label=PyPI">

docs/src/index.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ Run the following command to install [`reactpy-router`](https://pypi.org/project
66
pip install reactpy-router
77
```
88

9-
## Done!
9+
## Quick Start
1010

11-
You're now ready to start building your own ReactPy applications with URL routing.
11+
You're now ready to start building your own ReactPy applications with URL routing. For example...
12+
13+
=== "components.py"
14+
15+
```python
16+
{% include "../examples/python/basic-routing.py" %}
17+
```

docs/src/learn/your-first-app.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Here you'll learn the various features of `reactpy-router` and how to use them.
66

77
!!! abstract "Note"
88

9-
These docs assume you already know the basics of [ReacPy](https://reactpy.dev).
9+
These docs assume you already know the basics of [ReactPy](https://reactpy.dev).
1010

1111
---
1212

setup.cfg

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
[bdist_wheel]
2-
universal=1
3-
41
[coverage:report]
52
fail_under = 100
63
show_missing = True

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
"Programming Language :: Python :: 3.9",
4343
"Programming Language :: Python :: 3.10",
4444
"Programming Language :: Python :: 3.11",
45+
"Programming Language :: Python :: 3.12",
4546
"Topic :: Software Development :: User Interfaces",
4647
"Topic :: Software Development :: Widget Sets",
4748
"Typing :: Typed",

0 commit comments

Comments
 (0)