diff --git a/website/pages/docs/getting-started.mdx b/website/pages/docs/getting-started.mdx index fa76c6b..a0d6bec 100644 --- a/website/pages/docs/getting-started.mdx +++ b/website/pages/docs/getting-started.mdx @@ -87,7 +87,7 @@ You can enable Tailwind autocompletion inside `twc` using the steps below: Import `twc` and create a component using `twc.div`, where `div` stands to the tag name of the component you want to create. ```tsx filename="card.tsx" -import { tsc } from "react-twc"; +import { twc } from "react-twc"; export const Card = twc.div`rounded-lg border bg-slate-100 text-white shadow-sm`; ```