You have 3 active projects and 5 pending tasks. Let's make some progress today!
Projects
Tasks
Snippets
Streak
import React from 'react';
import { useState } from 'react';
function Counter() {
const [count, setCount] = useState(0);
return (
<div className="p-4">
<p>You clicked {count} times</p>
<button
onClick={() => setCount(count + 1)}
className="bg-blue-500 text-white px-4 py-2 rounded"
>
Click me
</button>
</div>
);
}
export default Counter;
React, Node.js, MongoDB
React Native, Firebase
Next.js, Tailwind CSS
E-commerce project
Portfolio website
Fitness app