Subida del módulo y tema de PrestaShop

This commit is contained in:
Kaloyan
2026-04-09 18:31:51 +02:00
parent 12c253296f
commit 16b3ff9424
39262 changed files with 7418797 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
<h1>Hello World</h1>
<h2>Hello World</h2>
<h3>Hello World</h3>
<h4>Hello World</h4>
<p class="h1">p-style h1. Bootstrap heading</p>
<p class="h2">p-style h2. Bootstrap heading</p>
<p class="h3">p-style h3. Bootstrap heading</p>
<p class="h4">p-style h4. Bootstrap heading</p>

View File

@@ -0,0 +1,21 @@
import headingsContent from './headings.html';
export default {
title: 'UI/Headings',
parameters: {
docs: {
description: {
component: 'Headings are used to display titles and section headers.'
}
}
}
};
export const Headings = () => headingsContent;
Headings.parameters = {
docs: {
source: {
code: headingsContent
}
}
};