From 0bcdb0e20e50752930ca7c469e40d0bf7e15eaba Mon Sep 17 00:00:00 2001 From: Ollie Jones Date: Fri, 1 Aug 2025 11:35:32 +0100 Subject: [PATCH] Fix code example in README.md The code example under "Using the pre-built component instead of the userTellerConnect hook" was using `const` where it should have be been using `class`. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3605ff3..3b6ad99 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ your application. ```tsx import { TellerConnect } from "teller-connect-react"; -const App extends React.Component { +class App extends React.Component { // ... render() { return (