yoda-common-boilerplate
Version:
Repository of all JCP reusable atoms, molecules and organisms
17 lines (14 loc) • 344 B
JSX
import React from 'react';
import { DepartmentCard } from 'molecules';
import { departmentCardData } from 'mocks';
const stories = [
{
name: 'Department Card',
story: () => (
<div>
<DepartmentCard image={departmentCardData.image} title={departmentCardData.title} />
</div>
)
}
];
export default stories;