From e95718a8fbc8b115a5acd3e5c4c2893a99964b72 Mon Sep 17 00:00:00 2001 From: miktirr Date: Wed, 26 Feb 2025 20:59:16 +0200 Subject: [PATCH] docs: Fix links in custom-features.md --- docs/guide/custom-features.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/custom-features.md b/docs/guide/custom-features.md index 9242209fdd..5eaa8bdf78 100644 --- a/docs/guide/custom-features.md +++ b/docs/guide/custom-features.md @@ -6,7 +6,7 @@ title: Custom Features Guide Want to skip to the implementation? Check out these examples: -- [custom-features](../../framework/react/examples/custom-features) +- [custom-features](../framework/react/examples/custom-features) ## Custom Features Guide @@ -108,7 +108,7 @@ The `createCell` method in a table feature is responsible for adding methods to Let's walk through making a custom table feature for a hypothetical use case. Let's say we want to add a feature to the table instance that allows the user to change the "density" (padding of cells) of the table. -Check out the full [custom-features](../../framework/react/examples/custom-features) example to see the full implementation, but here's an in-depth look at the steps to create a custom feature. +Check out the full [custom-features](../framework/react/examples/custom-features) example to see the full implementation, but here's an in-depth look at the steps to create a custom feature. #### Step 1: Set up TypeScript Types