Learn-skills.dev webflow-code-components

Build, define, and import React code components into Webflow via DevLink. Use when creating Webflow code components, configuring declareComponent definitions, working with prop types, styling within Shadow DOM, bundling with Webpack, or troubleshooting DevLink imports.

install
source · Clone the upstream repo
git clone https://github.com/NeverSight/learn-skills.dev
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/NeverSight/learn-skills.dev "$T" && mkdir -p ~/.claude/skills && cp -r "$T/data/skills-md/224-industries/webflow-skills/webflow-code-components" ~/.claude/skills/neversight-learn-skills-dev-webflow-code-components && rm -rf "$T"
manifest: data/skills-md/224-industries/webflow-skills/webflow-code-components/SKILL.md
source content

Webflow Code Components

Build, define, and import React code components into Webflow using DevLink. Code components let you develop advanced, interactive React components in your codebase and deploy them to Webflow as shared libraries for visual composition on the canvas.

Quick Start

Prerequisite: Webflow Workspace on Freelancer, Core, Growth, Agency, or Enterprise plan (or a site on CMS, Business, or Enterprise). Node.js 20+ and npm 10+.

  1. Set up your project — Install the CLI and dependencies
  2. Create a React component — Build your standard React component
  3. Define the code component — Create a
    .webflow.tsx
    file with
    declareComponent
  4. Import to Webflow — Run
    npx webflow library share
  5. Use on canvas — Install the library on a site, then drag and drop components

See

references/quick-start.md
for a full end-to-end tutorial.

Key Concepts

  • Shadow DOM isolation — Styles and DOM are sandboxed per component
  • Separate React roots — No shared React Context or state between components. Use URL params, browser storage, Nano Stores, or custom events
  • SSR by default — Server-rendered HTML is hydrated on the client. Disable with
    ssr: false
    for browser-only components
  • declareComponent
    — Defines how your React component appears in Webflow. See
    references/hooks.md
    for the full API
  • Prop types — 11 types available (
    Text
    ,
    Rich Text
    ,
    Text Node
    ,
    Link
    ,
    Image
    ,
    Number
    ,
    Boolean
    ,
    Variant
    ,
    Visibility
    ,
    Slot
    ,
    ID
    )
  • Bundling — Webpack bundles your library (50MB max)

Important Notes

  • File names are unique identifiers. Renaming a
    .webflow.tsx
    file creates a new component and removes the old one — existing instances on sites will break.
  • React Server Components are not supported. Use standard React components only.
  • Components can fetch data client-side, but APIs must support CORS and you must never embed API keys in component code.

Reference Documentation

Each reference file includes YAML frontmatter with

name
,
description
, and
tags
for searchability. Use the search script in
scripts/search_references.py
to find relevant references.

Getting Started

Building Components

Prop Types

Bundling & CLI

Help

  • references/faq.md: Frequently asked questions — setup, styling, imports, troubleshooting, performance

Searching References

# List all references with metadata
python scripts/search_references.py --list

# Search by tag (exact match)
python scripts/search_references.py --tag <tag>

# Search by keyword (across name, description, tags, and content)
python scripts/search_references.py --search <query>

# Search only prop type references
python scripts/search_references.py --prop-types
python scripts/search_references.py --prop-types --tag <tag>
python scripts/search_references.py --prop-types --search <query>

Scripts

  • scripts/search_references.py
    : Search reference files by tag, keyword, or list all with metadata