-
Notifications
You must be signed in to change notification settings - Fork 0
/
Experiences.js
39 lines (30 loc) · 967 Bytes
/
Experiences.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import React, { Component } from "react";
import bu from './BU.png';
class Experiences extends Component{
render(){
return(
<div className="ExperiencesContainer">
<p className="Experiencespar">
Experiences Include: <br/>
<br/>
-Part of a team that built a dual android/iOS app using react Native <br/>
<br/>
-PowerShell Scripting for Cybersecurity <br/>
<br/>
-Discrete Mathematics <br/>
<br/>
-Probability and Stochastic Modeling <br/>
<br/>
-Computer Organization <br/>
<br/>
-C# and ASP.Net programming <br/>
<br/>
-Algorithms <br/>
<br/>
</p>
<img src={bu} width="400" height="300" margin-right="200px" className="BU-pic" alt="bu" />
</div>
);
}
}
export default Experiences;