Skip to content

Commit fa4b1df

Browse files
committed
Add in progress warnings
1 parent 6195050 commit fa4b1df

File tree

3 files changed

+24
-12
lines changed

3 files changed

+24
-12
lines changed

docs/src/learn/add-react-to-an-existing-project.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@
22
title: Add React to an Existing Project 🚫
33
---
44

5-
<!--
6-
TODO: Template tag is needed to complete this tab
7-
https://github.com/reactive-python/reactpy/issues/653
8-
-->
9-
105
## Overview
116

127
<p class="intro" markdown>
@@ -15,6 +10,13 @@ If you want to add some interactivity to your existing project, you don't have t
1510

1611
</p>
1712

13+
!!! warning "In Progress"
14+
15+
This feature is planned, but not yet developed.
16+
17+
See [this issue](https://github.com/reactive-python/reactpy/issues/653) for more details.
18+
19+
<!--
1820
<Note>
1921
2022
**You need to install [Node.js](https://nodejs.org/en/) for local development.** Although you can [try React](/learn/installation#try-react) online or with a simple HTML page, realistically most JavaScript tooling you'll want to use for development requires Node.js.
@@ -70,7 +72,9 @@ Then add these lines of code at the top of your main JavaScript file (it might b
7072
</head>
7173
<body>
7274
<!-- Your existing page content (in this example, it gets replaced) -->
73-
</body>
75+
76+
</body>
77+
7478
</html>
7579
```
7680
@@ -155,4 +159,4 @@ When you adopt React in an existing project, it's common to start with small int
155159

156160
## Using React Native in an existing native mobile app
157161

158-
[React Native](https://reactnative.dev/) can also be integrated into existing native apps incrementally. If you have an existing native app for Android (Java or Kotlin) or iOS (Objective-C or Swift), [follow this guide](https://reactnative.dev/docs/integration-with-existing-apps) to add a React Native screen to it.
162+
[React Native](https://reactnative.dev/) can also be integrated into existing native apps incrementally. If you have an existing native app for Android (Java or Kotlin) or iOS (Objective-C or Swift), [follow this guide](https://reactnative.dev/docs/integration-with-existing-apps) to add a React Native screen to it. -->

docs/src/learn/editor-setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ A properly configured editor can make code clearer to read and faster to write.
2222
Other popular text editors used in the React community include:
2323

2424
- [WebStorm](https://www.jetbrains.com/webstorm/) is an integrated development environment designed specifically for JavaScript.
25-
- [Sublime Text](https://www.sublimetext.com/) has support for JSX and TypeScript, [syntax highlighting](https://stackoverflow.com/a/70960574/458193) and autocomplete built in.
25+
- [Sublime Text](https://www.sublimetext.com/) has support for [syntax highlighting](https://stackoverflow.com/a/70960574/458193) and autocomplete built in.
2626
- [Vim](https://www.vim.org/) is a highly configurable text editor built to make creating and changing any kind of text very efficient. It is included as "vi" with most UNIX systems and with Apple OS X.
2727

2828
## Recommended text editor features

docs/src/learn/react-developer-tools.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,27 @@
11
---
2-
title: React Developer Tools 🚧
2+
title: React Developer Tools 🚫
33
---
44

55
## Overview
66

77
<p class="intro" markdown>
88

9-
Use React Developer Tools to inspect React [components](/learn/your-first-component), edit [props](/learn/passing-props-to-a-component) and [state](/learn/state-a-components-memory), and identify performance problems.
9+
Use React Developer Tools to inspect React [components](../learn/your-first-component.md), edit [props](../learn/passing-props-to-a-component.md) and [state](../learn/state-a-components-memory.md), and identify performance problems.
1010

1111
</p>
1212

1313
!!! summary "You Will Learn"
1414

15-
- How to install React Developer Tools
15+
- How to install ReactPy Developer Tools
1616

17+
18+
!!! warning "In Progress"
19+
20+
This feature is planned, but not yet developed.
21+
22+
See [this issue](https://github.com/reactive-python/reactpy/issues/1072) for more details.
23+
24+
<!--
1725
## Browser extension
1826
1927
The easiest way to debug websites built with React is to install the React Developer Tools browser extension. It is available for several popular browsers:
@@ -82,4 +90,4 @@ It should connect to any local React Native app that's running.
8290
8391
> Try reloading the app if developer tools doesn't connect after a few seconds.
8492
85-
[Learn more about debugging React Native.](https://reactnative.dev/docs/debugging)
93+
[Learn more about debugging React Native.](https://reactnative.dev/docs/debugging) -->

0 commit comments

Comments
 (0)