Skip to main content
Version: 1.0.115

Card

const cardTitle = {
name: 'card_title',
component: NANO.CARD_TITLE,
value: 'This is the title',
props: {
subtitle: "This is the subtitle"

},
};

const cardCover = {
name: 'card_cover',
component: NANO.CARD_COVER,
value: 'https://xxxx.xxx/image.jpg',
props: {
  
},
};


const cardContent = {
name: "card_content",
component: NANO.CARD_CONTENT,
content: [],
props: {
style: {

},
}
}

const cardAction = {
name: 'card_action',
component: NANO.CARD_ACTION,
content: [],
props: {
 
},
};


const card = {
name: 'card',
component: NANO.CARD,
content: [cardTitle, cardContent, cardCover, cardAction],
props: {
style: {

},
}
};