-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
192fc51
commit 3082944
Showing
4 changed files
with
34 additions
and
1 deletion.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import { Sample } from "../Sample" | ||
import PaulWang from "../../assets/member/PaulWang.jpg" | ||
import { MemberArticleType, MemberCertificateType, MemberInternType, MemberParticipateType, MemberCompetitionExperienceType } from "../../type/MemberCertificateType" | ||
|
||
export const PaulWangMemberPage = () => { | ||
const bio = "大家好,我是王立翔,目前是個新手,會慢慢增添我的經歷,請大家多多指教!" | ||
const certificates: MemberCertificateType[] = [] | ||
const competitionExperiences: MemberCompetitionExperienceType[] = [] | ||
const participates: MemberParticipateType[] = [] | ||
const internExperiences: MemberInternType[] = [] | ||
const journals: MemberArticleType[] = [] | ||
const conferences: MemberArticleType[] = [] | ||
const techConfs: MemberArticleType[] = [] | ||
return ( | ||
<Sample | ||
zhName="王立翔" | ||
enName="Wang, Li-Siang" | ||
avatar={PaulWang} | ||
institutes={["國立臺北科技大學 資訊工程所 碩零"]} | ||
bio={bio} | ||
experiences={competitionExperiences} | ||
certificates={certificates} | ||
participates={participates} | ||
intern={internExperiences} | ||
journals={journals} | ||
conferences={conferences} | ||
techConfs={techConfs} | ||
></Sample> | ||
) | ||
} |
This file contains 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