import React from 'react'; import { Link } from 'react-router-dom'; import './css/About.css'; import ReactImage from '../img/react.webp'; import ProfilePic from '../img/profile.webp'; import Theater from './Theater'; import Card from './Card'; class About extends React.Component { componentDidMount () { document.title = "About"; } render() { return (
This website is created with React, a javascript library for creating user interfaces and webapps. React uses a component based design to help developers create easily re-usable code, and to help streamline the development process. JSX is a part of react which makes it easy to design websites directly in javascript code. I am a computer science student at Marist College in Poughkeepsie, NY. I'm closing in on my Bachelors Degree in Computer Science. I went to Orange County Community College for my Associates Degree in Computer Science. You can find a few of my projects on my github or look through a list in the Github Page
); } } export default About;