I am a Software Engineer
class SoftwareEngineer {
name: string;
code: string[];
tools: string[];
constructor() {
this.name = "Tyler Georges";
this.code = ["TypeScript", "JavaScript", "HTML", "CSS"];
this.tools = ["React", "Node", "NextJS", "Tailwind", "Drizzle", "Supabase", "Redux", "Zustand", "Styled-Components"];
}
}