https://github.com/dromse/html-components
My list of reusable html components
https://github.com/dromse/html-components
Last synced: 4 months ago
JSON representation
My list of reusable html components
- Host: GitHub
- URL: https://github.com/dromse/html-components
- Owner: dromse
- Created: 2024-05-16T12:11:39.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-16T12:14:52.000Z (about 1 year ago)
- Last Synced: 2025-01-28T03:41:41.624Z (6 months ago)
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# HTML-Components
My list of html components to reuse for landing pages, ecommerce websites etc.
Every directory must have README.md which contains screenshots, animations, instructions of how to start work with components.## Defenitions:
### Base stack
- base.html - use only html/css/js stack
- scss.html - use html/scss/js stack
- tailwind.html - use html/tailwind/js stack```html
```
### React stack
Also there can be react-\*.tsx, which contains reusable component for inserting in react application.
- react-base.tsx - use only tsx,css,ts
- react-scss.tsx - use only tsx,scss,ts
- react-tailwind.tsx - use only tsx,tailwind,ts
- react-styled.tsx - use only tsx,styled-components,ts```js
// styles, put inside .{css, scss} or .module.css file
;// jsx component, put inside jsx
;
function Component() {
return
}
```