Skip to content

Commit

Permalink
is it this maybe idk
Browse files Browse the repository at this point in the history
  • Loading branch information
carpotoxin committed Sep 3, 2024
1 parent a2a4f32 commit 5e17dbb
Showing 1 changed file with 11 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
import { Feature } from '../../base';
import {
FeatureChoiced,
FeatureChoicedServerData,
FeatureValueProps,
} from '../../base';
import { FeatureDropdownInput } from '../../dropdowns';

export const feature_animalistic: Feature<string> = {
export const feature_animalistic: FeatureChoiced = {
name: 'Animalistic trait',
component: FeatureDropdownInput,
component: (
props: FeatureValueProps<string, string, FeatureChoicedServerData>,
) => {
return <FeatureDropdownInput buttons {...props} />;
},
};

0 comments on commit 5e17dbb

Please sign in to comment.