austincrim / hastyui

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

HastyUI 🏍️

a tiny DSL for React and TailwindCSS inspired by SwiftUI

This project is mostly for fun and learning. Relax! Not intended for real world use.

Write something like:

VStack {
  Text("Hello World!")
  Text("Another line!")
}

and get this:

export default function Component() {
  return (
    <div className="flex flex-col items-center">
      <p>Hello World!</p>
      <p>Another line!</p>
    </div>
  )
}

About


Languages

Language:JavaScript 96.8%Language:HTML 3.2%