15 lines
435 B
TypeScript
15 lines
435 B
TypeScript
import { SpoonCommitList } from './spoon-commit-list';
|
|
|
|
export const SpoonDetailFork = ({
|
|
commits,
|
|
}: {
|
|
commits: Parameters<typeof SpoonCommitList>[0]['commits'];
|
|
}) => (
|
|
<SpoonCommitList
|
|
commits={commits}
|
|
emptyDescription='Fork-only commits appear after Spoon compares your fork with upstream.'
|
|
emptyTitle='No fork-only commits cached'
|
|
intro='Fork-only commits are customizations Spoon should preserve.'
|
|
/>
|
|
);
|