A Pen by Parker Steindorf on CodePen.
Created
August 4, 2022 22:35
-
-
Save btownrippleman/8728f302d299066541a5a04b5ce37ba5 to your computer and use it in GitHub Desktop.
React Resume
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script src='https://code.jquery.com/jquery-3.2.1.slim.min.js'></script> | |
| <script src='https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js'></script> | |
| <script src='https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js'></script> | |
| <script src='https://unpkg.com/react@16/umd/react.development.js'></script> | |
| <script src='https://unpkg.com/react-dom@16/umd/react-dom.development.js'></script> | |
| <div id="app"></div> | |
| <script src = "./App.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class PersonalInfo extends React.Component{ | |
| render(){ | |
| return( | |
| <div> | |
| <h1>Parker Steindorf</h1> | |
| <p className="email"> parkersteindorf@gmail.com</p> | |
| </div> | |
| ) | |
| } | |
| } | |
| class Body extends React.Component{ | |
| render(){ | |
| return( | |
| <div> | |
| <h4>Objective</h4> | |
| <p>To obtain a position as a computer programmer.</p> | |
| <h4>Experience</h4> | |
| <p>Level 3 Communications Intern (May 2016-October 2016)</p> | |
| <li>Mapped the architecture of the alarms systems and programmed many alarms</li> | |
| <li>Learned valuable programs and teamwork skills</li> | |
| <h4>Skills</h4> | |
| <p>Languages: C, C++, Java, Python, Assembly, FPGA</p> | |
| <h4>Education</h4> | |
| <p>BS in Computer Science, Colorado State University</p> | |
| </div> | |
| ) | |
| } | |
| } | |
| class Contact extends React.Component{ | |
| render(){ | |
| return( | |
| <p>4900 Boardwalk Dr. Apt A305 Fort Collins, CO 80525 | Tel: (707) 480-8138</p> | |
| ) | |
| } | |
| } | |
| class App extends React.Component{ | |
| render(){ | |
| return( | |
| <div> | |
| <PersonalInfo /> | |
| <Body /> | |
| <Contact /> | |
| </div> | |
| ); | |
| } | |
| } | |
| ReactDOM.render(<App />, document.getElementById("app")); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script> | |
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script> | |
| <script src="https://unpkg.com/react@16/umd/react.development.js"></script> | |
| <script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment