A step-by-step tutorial for creating your first project using Εεβα's development platform. Learn by example with interactive code samples and explanations.
Begin by installing the Εεβα command line interface. This tool will allow you to create, test, and deploy your applications from the terminal.
npx create-eeba-app my-first-project
import React from 'react';
export function SimpleButton({ text, onClick }) {
return (
);
}
import React from 'react';
import { SimpleButton } from './SimpleButton';
export function App() {
const handleClick = () => {
alert('Button clicked!');
};
return (
);
}
npx dev
When ready to share your creation, deploy your app to the web using Εεβα's built-in deployment tools.
npx deploy
In this tutorial, we've built a simple React app using Εεβα's development stack. You've seen how to structure components, create modular UI, and prepare your project for deployment.