Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View aakashpothepalli's full-sized avatar
💻

Aakash Pothepalli aakashpothepalli

💻
View GitHub Profile
for i in lets:
i+2
import React from "react";
export default function App() {
return (
<div>
Hello world
</div>
);
}
import React,{useEffect,useState} from "react"
export default function TypingAnimation(){
return (
<div>
Typing Animation here
</div>
)
}
import React from "react";
import TypingAnimation from "./typingAnimation.js"
export default function App() {
return (
<div>
<TypingAnimation/>
</div>
);
}