What DevLink Exports
When you export components from Webflow with the webflow devlink sync command, DevLink generates a set of files designed for integration into your React application.
By default, it puts these files in a devlink folder within your project.
The following file structure shows the files that the webflow devlink sync command creates and exports.
More information about these files is in the sections below.
React components
For each Webflow component that you export, DevLink generates a ready-to-use React component. It also generates React components for Webflow components that the exported components rely on.
These exports include:
- A JavaScript implementation that includes the React component itself, complete with built-in Webflow utilities and styles
- TypeScript definitions to provide type safety and autocompletion in modern editors
This means that you can drop the exported component directly into your React project and use it like any other React component, all while keeping the structure, styles, and functionality defined in Webflow.
The generated React component contains:
- Props: including an
asprop for overriding the top-level wrapper element. - Scoped classes: Webflow classes mapped to CSS modules with a utility function (
_utils.cx). - Nested elements: a JSX hierarchy that mirrors your Webflow design, built with Webflowβs primitives (
Block,Link,Image, etc.). - Assets and media: images, dimensions, alt text, and link attributes are carried over automatically.
- Text content: any static text from your Webflow design is included in the output.
This means what you design in Webflow is translated into React code, with flexibility for developers to integrate, extend, and style as needed.
Do not manually edit exported components
DevLink auto-generates exported components. Any manual edits will be overwritten during the next sync and your changes will be lost.
Styles
When you export with DevLink, you also get a global stylesheet that makes your React app render Webflow components consistently with what you designed. This stylesheet normalizes browser defaults, provides Webflowβs core utility classes, and sets responsive breakpoints so exported components look and work like they do in Webflow.
If the cssModules option is enabled in the webflow.json file, Webflow creates a classes.module.css that contains the styles as CSS modules.
Here are some details about these styles:
-
Normalize / reset Based on
normalize.cssto align default styles across browsers. -
Base element styles Opinionated defaults for
html,body, headings, paragraphs, lists, images, blockquotes, figures, etc. -
Webflow core utility classes Single-purpose helpers you can apply anywhere in your React project. Each class is named with a
w-prefix. -
Component frameworks Predefined class systems for interactive Webflow elements like sliders, tabs, nav, dropdowns, lightbox, background video, and more.
-
Icon font & glyphs
@font-faceforwebflow-iconsand[class^="w-icon-"]selectors. -
Responsive breakpoints Defaults around 991px, 767px, and 479px for container widths and column classes.
-
CSS variables & theme defaults Variables from your Webflow site, plus base typography and link styles.
The global stylesheet is imported once, while per-component custom classes are exported as CSS Modules to keep styles from leaking.
DevLinkProvider.js
DevLinkProvider.js is a React context provider that wires exported components into your appβs runtime.
You must wrap your root layout with DevLinkProvider so that all exported components get the correct rendering context, as in this example:
Webflow modules
In addition to React components and global styles, DevLink exports foundational code that the exported React components need, such as runtime helpers and component primitives. These are the building blocks that your exported components rely on to render consistently inside your React app.
By default, these modules are generated to the webflow_modules folder inside the root folder of exported files.
Here is a summary of the generated files in this folder:
Core files
devlink.jsanddevlink.d.ts: Core functionality.types.jsandtypes.d.ts: Type definitions.interactions.jsandinteractions.d.ts: Interactions engine.utils.jsandutils.d.ts: Helper functions and types that simplify class management and other common patterns in the generated code. Most notably, thecx()function is used to combine your scoped CSS module classes with Webflow class names safely. Using this function keeps class names predictable and collision-free.
If your components need them, DevLink exports other folders with handlers for other primitives, such as Boolean value handlers, number value handlers, or slider components.
Name changes
DevLink renames exported components, props, and custom attributes to ensure that the generated React code has valid, collision-free identifiers.
Components
DevLink converts component names to PascalCase and sanitizes them to ensure that they are valid JavaScript identifiers. It uses these rules:
- Spaces are removed and the resulting merged words are capitalized into PascalCase
- Emojis and special characters including leading underscores are removed
- Leading numbers in names are prefixed with
UnknownComponent - Reserved words are prefixed with
UnknownComponent - Duplicate names are given numeric suffixes
If these rules create an empty name or the component needs a prefix, DevLink uses UnknownComponent.
Examples:
Props
DevLink converts prop names to camelCase and sanitizes them to ensure that they are valid JavaScript identifiers. It uses these rules:
- Dashes and spaces are removed and the resulting merged words are capitalized into camelCase
- Emojis and special characters including leading underscores are removed
- Leading numbers in names are prefixed with
unknownProp - Reserved words are made unique with the
Propsuffix - Duplicate names are given numeric suffixes
data-*andaria-*attributes are preserved as-is for HTML elements
If these rules create an empty name or the prop needs a prefix, DevLink uses unknownProp.
Examples:
Custom attributes
DevLink changes the names of custom attributes or filters them out when the current name is not valid in React. It uses these rules:
- HTML5 standard names such as
tabindexandmaxlengthare capitalized according to React standards, in this exampletabIndexandmaxLength - Attributes that have a React equivalent, such as
classandfor, are converted to the React equivalent, in this exampleclassNameandhtmlFor - Attributes that match event handler names such as
onClickandonMouseOverare filtered out, regardless of case - Attributes that start with numbers are filtered out
- Attributes that are incomplete, such as
data-andaria-are filtered out - Attributes named with an empty string are filtered out
- Attributes containing invalid characters, such as
my-π-attr, are filtered out - Any other invalid HTML5 attributes are filtered out
DevLink prints a warning to your CLI console, and adds JSDoc Invalid Attribute comments, when it filters out attributes due to these rules, except when removing attributes with an empty string as their name.
For example, this exported code shows a warning about a custom attribute that was filtered out:
For more information about valid custom attribute names in React, see Props in the React documentation.
Next steps
Learn how to style components for reliable export
Learn how to use the components youβve exported.
FAQs
Can I adjust the exported components?
Yes, you can adjust the exported components by modifying the Webflow component in the Designer and re-exporting them. Any manual changes to the exported components will be overwritten when you re-export them.
Can I export React components as JSX?
Yes. By default, DevLink exports React components as .js files. You can change the file extensions of the exported components and styles by modifying the fileExtensions setting in your DevLink configuration file.
Does DevLink export Custom Code?
DevLink exports any Code Embed elements inside a component. However, it doesnβt export custom code from the page or site.
To include custom code with a DevLink component, add it using a Code Embed element placed inside the component.