Skip to Content
ExamplesStyling

Turbo Flow

Every part of the React Flow UI is customizable. As the name implies the look is taken from the beautiful turbo.build  website. You can find more information about custom styles in the theming guide. (React Flow uses Turborepo and we love it 💜)

import { createRoot } from 'react-dom/client'; import App from './App'; const container = document.querySelector('#app'); const root = createRoot(container); root.render(<App />);
Last updated on