Creating Page

MAKE SURE TO POINT ErrorDocument 404 in .htaccess to index.html of PROJECT

Pages in Yugal.JS are methods. You are needed to define a simple js method which return an object with render parameter. render parameter accepts the code to render into the body. Below is the example.

    function HomePage(){
        return{
            render: `<h1>HELLO WORLD</h1>`
        };
    }

Last updated

Was this helpful?