1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

ポートフォリオ作ってみた

Last updated at Posted at 2020-02-05
  • React
  • GitHub pages
  • Material-Ui

あたりをつかってさくっと作ってみました。

こちらがつくったページ

基本的にはcreate-react-appしてMaterial-Uiのタブを使っただけです。

create-react-appからGitHubPagesにデプロイするのはこのあたりの記事を参考にさせていただきました。

あとは、コンテンツをなんとなくマークダウンで書きたいお気持ちだったので、マークダウンでprofileなどをかいて読み込もうとしたら、Create React AppはまだMarkdownを簡単にLoadする手段がないという記事を発見。
上記の記事に書いてあったraw.macroをつかってマークダウンを読み込むことに成功しました!

const raw = require('raw.macro')
const aboutMe = raw('../data/aboutMe.md')
...
  <ReactMarkdown className="MainPage-contents" source={aboutMe} />
...

読み込んだマークダウンはreact-markdownを使って処理しています。

作ったはいいけど、コンテンツが薄いので、2020年はworksなどを充実させていきたいです。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?