import { experimentOn } from '@islavi/ng2-component-lab';
const alert1 = window.alert;
const console1 = console.log;
export default experimentOn('Tiles')
.group("Tiles",[
{
id: 'tileSampleBlue',
showSource: true,
context: {
alert: alert1,
console: console1
},
title: 'Tile sample blue',
description: 'Tile sample blue',
template: `
P
`
},
{
id: 'tileSamplePurple',
title: 'Tile sample purple',
description: 'Tile sample purple',
showSource: true,
template: `
P
`
},
{
id: 'tileSampleWithoutFooter',
title: 'Tile sample without footer',
description: 'Tile sample without footer',
showSource: true,
template: `
P
`
},
{
id: 'tileSampleWithoutHeader',
title: 'Tile sample without header',
description: 'Tile sample without header',
showSource: true,
template: `
`
},
{
id: 'tileJustWithInfo',
title: 'Tile just with info',
description: 'Tile just with info',
showSource: true,
template: `
`
}
]);