From 53767ba52adbdf18791d1ccb194f5c0f18029d8a Mon Sep 17 00:00:00 2001 From: Stephan Kenneth Markvard Olsen Date: Thu, 20 Jul 2023 11:17:43 +0200 Subject: [PATCH] fix react import in quick start example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 74b80bf..c91a601 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ This library is build with TypeScript, so type-definitions are shipped out-of-th We're only scratching the surface here, but here's a quick example to get some sense what this library feels like and how to get going. ```jsx -import * React from "react"; +import * as React from "react"; import { useLayer, useHover, Arrow } from "react-laag"; function Tooltip({ children, content }) {