Skip to content
This repository has been archived by the owner on May 31, 2021. It is now read-only.

Commit

Permalink
Merge pull request #39 from SoyBeansLab/feature/template-home
Browse files Browse the repository at this point in the history
feat: home templateを実装
  • Loading branch information
ucpr authored Aug 19, 2019
2 parents 8f08bd7 + a027a8a commit 09c7860
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/templates/Home.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import React from "react";
import PropTypes from "prop-types";
import Slider from "../molecules/Slider";

export default function Home(props) {
const slideItemList = props.slideItemList;

return (
<div>
<Slider slideItemList={slideItemList} />
{/* 寂しいので何らかのコンテンツ欲しい */}
</div>
);
}

Home.propTypes = {
slideItemList: PropTypes.array,
};

0 comments on commit 09c7860

Please sign in to comment.