You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-6Lines changed: 11 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -139,17 +139,20 @@ Let's break this down.
139
139
140
140
### **UI In Pynecone**
141
141
142
-
Lets start by talking about the UI this Pynecone App.
142
+
Let's start with the UI.
143
143
144
144
```python
145
145
defindex():
146
146
return pc.center(
147
147
...
148
148
)
149
149
```
150
-
This index function defines the frontend of the app. We use different components such as `center`, `vstack`, `input`, and `button` to build the front end. Components can be nested to create complex layouts and styled using CSS's full power. Just pass them in as keyword args.
150
+
This `index` function defines the frontend of the app.
151
151
152
-
Pynecone comes with [50+ built-in components](https://pynecone.io/docs/library) to help you get started. We are actively adding more components, plus it's easy to create your own components.
152
+
We use different components such as `center`, `vstack`, `input`, and `button` to build the frontend. Components can be nested within each other
153
+
to create complex layouts. And you can use keyword args to style them with the full power of CSS.
154
+
155
+
Pynecone comes with [60+ built-in components](https://pynecone.io/docs/library) to help you get started. We are actively adding more components, plus it's easy to (create your own components)[https://pynecone.io/docs/advanced-guide/wrapping-react].
153
156
154
157
### **State**
155
158
@@ -198,10 +201,12 @@ You can create a multi-page app by adding more routes.
198
201
199
202
## Status
200
203
201
-
As of December 2022, Pynecone has just been released publicly and is in the **Alpha Stage**.
204
+
Pynecone launched in December 2022.
205
+
206
+
As of March 2023, we are in the **Public Beta** stage.
202
207
203
-
-:large_orange_diamond:**Public Alpha**: Anyone can install and use Pynecone. There may be issues, but we are working to resolve them actively.
204
-
-**Public Beta**: Stable enough for non-enterprise use-cases.
208
+
-:white_check_mark:**Public Alpha**: Anyone can install and use Pynecone. There may be issues, but we are working to resolve them actively.
209
+
-:large_orange_diamond:**Public Beta**: Stable enough for non-enterprise use-cases.
205
210
-**Public Hosting Beta**: **Optionally** Deploy and Host your own apps on Pynecone!
0 commit comments