From f3d25c946350049129fa65981b14b954fbc017c2 Mon Sep 17 00:00:00 2001 From: Cody McKee Date: Fri, 23 Aug 2024 16:13:52 -0700 Subject: [PATCH] :wrench: Rename + fixup README --- README.md | 5 ++++- .../index.tsx | 0 2 files changed, 4 insertions(+), 1 deletion(-) rename examples/{react-use-front-chat-boot-verified-user => react-verified-user}/index.tsx (100%) diff --git a/README.md b/README.md index 05cd8b9..26cc007 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,10 @@ After the last command, the example application can be accessed at http://localh There are four helpers provided in this repository, and each of them is used in the [examples](https://github.com/frontapp/front-chat-sdk/tree/main/examples) directory. -Additionally, there is an example of how to embed a Front Chat widget [directly in a page](https://github.com/frontapp/front-chat-sdk/tree/main/examples/react-embed-front-chat). This example uses React, but the general principle should work for any application. +We have also provided additional examples for common use cases. These examples use React, but the general principles should work for any application. + +- How to embed a Front Chat widget [directly in a page](https://github.com/frontapp/front-chat-sdk/tree/main/examples/react-embed-front-chat). +- How to initialize a Front Chat widget [with a verified user](https://github.com/frontapp/front-chat-sdk/tree/main/examples/react-verified-user). #### Quick-start Helpers diff --git a/examples/react-use-front-chat-boot-verified-user/index.tsx b/examples/react-verified-user/index.tsx similarity index 100% rename from examples/react-use-front-chat-boot-verified-user/index.tsx rename to examples/react-verified-user/index.tsx