import { ArrowRight } from 'react-feather' import SectionContainer from './Layouts/SectionContainer' const Feature = ({ title, description, url }) => (

{ title }

{ description }

) const TextLink = ({ url, label }) => (
{label}
) const HowItWorks = () => { return (

What's under the hood? 🚕

Given .wasp and .js(x)/.css/..., source files, Wasp compiler generates the full source of your web app in the target stack - front-end, back-end and deployment.

{/* Features */}
{/* EOF Features */}
React
) } export default HowItWorks