Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
323 Bytes
import PropTypes from 'prop-types';
import React from 'react';
const propTypes = {
description: PropTypes.string,
};
function StoryFixture({ description, children }) {
return (
<div>
<p>{description}</p>
{children}
</div>
);
}
StoryFixture.propTypes = propTypes;
export default StoryFixture;