TechStarHub
Learn | Build | Share | Connect
What We Do
We are a community of developers, designers, and tech enthusiasts who are passionate about technology and its impact on the world.
Our Purpose
We are a community of developers, designers, and tech enthusiasts who are passionate about technology and its impact on the world.
Our Future
We are a community of developers, designers, and tech enthusiasts who are passionate about technology and its impact on the world.
Full Stack Web Development
Learn to build full stack web applications.
1import React from 'react';
2import ReactDOM from 'react-dom/client';
3
4function Hello(props) {
5 return <h1>Hello World!</h1>;
6}
7
8const container = document.getElementById("root");
9const root = ReactDOM.createRoot(container);
10
11root.render(<Hello />);
12
Ctrl + Left/Right to switch languages.1/3
Learn React by building projects.
Open Source Contribution
Make your first contribution to open source.
bashGitHub
user@device MINGW64 /d/Projects (main) $ git add .
user@device MINGW64 /d/Projects (main) $ git status
On branch main
Your branch is up to date with 'origin/main'.
Changes to be committed:
(use "git restore --staged <file>..." to unstage)
new file: main.js
user@device MINGW64 /d/Projects (main) $ git commit -m "Added a new feature"
user@device MINGW64 /d/Projects (main) $ git pull origin main
user@device MINGW64 /d/Projects (main) $ git push origin main