Skip to content

Commit

Permalink
Added children to props
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianRappl committed Nov 11, 2023
1 parent 93286aa commit 2c6e2a4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/scaffold/components/CardSelector.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import { FC } from 'react';
import { FC, ReactNode } from 'react';
import { jsx } from '@emotion/react';
import { bundlers, cards, columnTitle } from '../styles';

interface CardSelectorProps {
title: string;
children: ReactNode;
}

export const CardSelector: FC<CardSelectorProps> = ({ title, children }) => {
Expand Down

0 comments on commit 2c6e2a4

Please sign in to comment.