summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-core/src/shapes/SummaryPart.js
blob: 75d5602590af0f1a248a74bc8b448674f7f69069 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
const React  = require('react');
const {
    arrayOf,
    string,
    shape
} = React.PropTypes;

const Article = require('./SummaryArticle');

module.exports = shape({
    title: string.isRequired,
    articles: arrayOf(Article)
});