import React from "react"; import { SplitView } from "../components/SplitView"; import styled from "styled-components"; const Image = styled.img` max-height: 300px; padding-bottom: 40px; `; export const CodeExample = () => { const ColumnOne = () => { return (
); }; const ColumnTwo = () => { return (

Written in JavaScript—rendered with native code by Qt

Apps can be built completely in JavaScript. This enables native app development for whole new teams of developers, and can let existing native teams work much faster.

With NodeGui you get flexibility of web and perfromance of Native desktop apps.

); }; return ( } columnTwo={} /> ); };