Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions docs/advanced_onboarding/code_structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,10 +255,6 @@ component.

### External Components

Reflex 0.4.3 introduced support for the [`reflex component` CLI commands](/docs/custom-components/overview), which makes it easy
to bundle up common functionality to publish on PyPI as a standalone Python package
that can be installed and used in any Reflex app.

When wrapping npm components or other self-contained bits of functionality, it can be helpful
to move this complexity outside the app itself for easier maintenance and reuse in other apps.

Expand Down
2 changes: 1 addition & 1 deletion docs/advanced_onboarding/how-reflex-works.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Many of our core components are based on [Radix](https://radix-ui.com/), a popul

We chose React because it is a popular library with a huge ecosystem. Our goal isn't to recreate the web ecosystem, but to make it accessible to Python developers.

This also lets our users bring their own components if we don't have a component they need. Users can [wrap their own React components](/docs/wrapping-react/overview) and then [publish them](/docs/custom-components/overview) for others to use. Over time we will build out our [third party component ecosystem](/docs/custom-components/overview) so that users can easily find and use components that others have built.
This also lets our users bring their own components if we don't have a component they need. Users can [wrap their own React components](/docs/wrapping-react/overview) for use in their apps.

### Styling

Expand Down
4 changes: 0 additions & 4 deletions docs/app/reflex_docs/pages/docs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
from .apiref import pages as apiref_pages
from .cloud import pages as cloud_pages
from .cloud_cliref import pages as cloud_cliref_pages
from .custom_components import custom_components
from .library import library
from .recipes_overview import overview

Expand Down Expand Up @@ -135,8 +134,6 @@ def get_previews_from_frontmatter(filepath: str) -> dict[str, str]:

manual_titles = {
"docs/database/overview.md": "Database Overview",
"docs/custom-components/overview.md": "Custom Components Overview",
"docs/custom-components/command-reference.md": "Custom Component CLI Reference",
"docs/api-routes/overview.md": "API Routes Overview",
"docs/client_storage/overview.md": "Client Storage Overview",
"docs/state_structure/overview.md": "State Structure Overview",
Expand Down Expand Up @@ -266,7 +263,6 @@ def comp(_actual=actual_path, _virtual=virtual_doc):

doc_routes = [
library,
custom_components,
overview,
*components_previews_pages,
*apiref_pages,
Expand Down
Loading
Loading