1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00

story fix

This commit is contained in:
ClaudiaHolhos 2022-06-08 17:41:13 +03:00
parent 186cf92908
commit faf87d65a0

View File

@ -15,8 +15,14 @@ interface Props {
args: AssetTypeProps
}
export const Default: Props = Template.bind({})
Default.args = {
type: 'compute',
export const Dataset: Props = Template.bind({})
Dataset.args = {
type: 'dataset',
accessType: 'access'
}
export const Algorithm: Props = Template.bind({})
Algorithm.args = {
type: 'algorithm',
accessType: 'compute'
}