From 1547f2d2dce7ca379002170b4811dc71425551e7 Mon Sep 17 00:00:00 2001 From: Rumeysa Bulut Date: Tue, 15 Jul 2025 22:24:48 +0200 Subject: [PATCH] Update fabric-component-native-commands.md Fix typo implementated -> implemented --- docs/the-new-architecture/fabric-component-native-commands.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/the-new-architecture/fabric-component-native-commands.md b/docs/the-new-architecture/fabric-component-native-commands.md index b62087ab745..ca87360ba3a 100644 --- a/docs/the-new-architecture/fabric-component-native-commands.md +++ b/docs/the-new-architecture/fabric-component-native-commands.md @@ -4,7 +4,7 @@ import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import con In the [base guide](/docs/fabric-native-components-introduction) to write a new Native Component, you have explored how to create a new component, how to pass properties from the JS side to the native side, and how to emit events from native side to JS. -Custom components can also call some of the functions implementated in the native code imperatively, to achieve some more advanced functionalities, such as programmatically reload a web page. +Custom components can also call some of the functions implemented in the native code imperatively, to achieve some more advanced functionalities, such as programmatically reload a web page. In this guide you'll learn how to achieve this, by using a new concept: Native Commands.