Files
tuono/README.md
T
2024-05-12 21:52:04 +02:00

733 B

Tuono
The react/rust fullstack framework

Tuono (Italian word for "thunder", pronounced /2 Oh No/). Why Tuono? Just a badass name.

This project is under heavy development. API might drastically change!

Features

  • Rust based server side rendering
  • FS routing
  • CSS modules

Folder structure

- .tuono
- public/
- src/
| - routes/
| | - api/
// Data is passed by the loading function
const IndexPage = ({data, isLoading, isError}) => <h1>Index Page</h1>

export const Route = createFileRoute({
    loader: (params) => fetchApi(params),
    component: IndexPage
})