Files
spoon/apps/expo/src/components/spoons/spoon-detail-fork.tsx
T
Gabriel Brown 42f95530de
Build and Push Next App / quality (push) Successful in 1m27s
Build and Push Next App / build-next (push) Successful in 3m58s
Update expo application
2026-06-22 12:13:02 -04:00

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.'
/>
);