From d341cb1592c151ab2519a9bf1627d5953329822c Mon Sep 17 00:00:00 2001 From: Tyler Hallada Date: Mon, 27 Jan 2020 15:23:13 -0500 Subject: [PATCH] Fix links in slate-react readme (#3428) Fixed the "Plugins" link and changed the "Constants" link (a folder which no longer exists) to a "Hooks" link. --- packages/slate-react/Readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/slate-react/Readme.md b/packages/slate-react/Readme.md index d62f947ae..81178396e 100644 --- a/packages/slate-react/Readme.md +++ b/packages/slate-react/Readme.md @@ -1,8 +1,8 @@ This package contains the React-specific logic for Slate. It's separated further into a series of directories: - [**Components**](./src/components) — containing the React components for rendering Slate editors. -- [**Constants**](./src/constants) — containing a few private constants modules. -- [**Plugins**](./src/plugins) — containing the React-specific plugins for Slate editors. +- [**Hooks**](./src/hooks) — containing a few React hooks for Slate editors. +- [**Plugins**](./src/plugin) — containing the React-specific plugins for Slate editors. - [**Utils**](./src/utils) — containing a few private convenience modules. Feel free to poke around in each of them to learn more!