├── .gitignore ├── README.md ├── package.json ├── postcss.config.js ├── public ├── index.html ├── manifest.json └── robots.txt ├── src ├── App.css ├── App.js ├── App.test.js ├── components │ ├── author-card │ │ ├── AuthorCard.jsx │ │ └── SocialTags.jsx │ ├── codehighlight │ │ └── CodeBlock.jsx │ ├── layout │ │ ├── Explainer.jsx │ │ ├── Navbar.jsx │ │ ├── Sidebar.jsx │ │ └── sidebar-links.js │ └── tags │ │ ├── a │ │ ├── A.jsx │ │ ├── a_details.js │ │ └── index.jsx │ │ ├── br │ │ ├── Br.jsx │ │ ├── br_details.js │ │ └── index.js │ │ ├── button │ │ ├── Button.jsx │ │ ├── button_details.js │ │ └── index.js │ │ ├── details │ │ ├── Details.jsx │ │ ├── details_details.js │ │ └── index.jsx │ │ ├── dialog │ │ ├── Dialog.jsx │ │ ├── dialog_details.js │ │ └── index.jsx │ │ ├── div │ │ ├── Div.jsx │ │ ├── div_details.js │ │ └── index.js │ │ ├── h1 │ │ ├── H1.jsx │ │ ├── h1_details.js │ │ └── index.jsx │ │ ├── h2 │ │ ├── H2.jsx │ │ ├── h2_details.js │ │ └── index.jsx │ │ ├── h3 │ │ ├── H3.jsx │ │ ├── h3_details.js │ │ └── index.jsx │ │ ├── h4 │ │ ├── H4.jsx │ │ ├── h4_details.js │ │ └── index.js │ │ ├── h5 │ │ ├── H5.jsx │ │ ├── h5_details.js │ │ └── index.js │ │ ├── h6 │ │ ├── H6.jsx │ │ ├── h6_details.js │ │ └── index.js │ │ ├── header │ │ ├── header.jsx │ │ └── index.js │ │ ├── img │ │ ├── Img.jsx │ │ ├── img_details.js │ │ └── index.jsx │ │ ├── p │ │ ├── P.jsx │ │ ├── index.js │ │ └── p_details.js │ │ ├── small │ │ ├── Small.jsx │ │ ├── index.js │ │ └── small_details.js │ │ └── tags.module.css ├── index.css ├── index.js ├── logo.svg ├── pages │ └── home │ │ └── Documenter.jsx ├── reportWebVitals.js └── setupTests.js ├── tailwind.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/author-card/AuthorCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/author-card/AuthorCard.jsx -------------------------------------------------------------------------------- /src/components/author-card/SocialTags.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/author-card/SocialTags.jsx -------------------------------------------------------------------------------- /src/components/codehighlight/CodeBlock.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/codehighlight/CodeBlock.jsx -------------------------------------------------------------------------------- /src/components/layout/Explainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/layout/Explainer.jsx -------------------------------------------------------------------------------- /src/components/layout/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/layout/Navbar.jsx -------------------------------------------------------------------------------- /src/components/layout/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/layout/Sidebar.jsx -------------------------------------------------------------------------------- /src/components/layout/sidebar-links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/layout/sidebar-links.js -------------------------------------------------------------------------------- /src/components/tags/a/A.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/a/A.jsx -------------------------------------------------------------------------------- /src/components/tags/a/a_details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/a/a_details.js -------------------------------------------------------------------------------- /src/components/tags/a/index.jsx: -------------------------------------------------------------------------------- 1 | export { A as default } from "./A"; 2 | -------------------------------------------------------------------------------- /src/components/tags/br/Br.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/br/Br.jsx -------------------------------------------------------------------------------- /src/components/tags/br/br_details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/br/br_details.js -------------------------------------------------------------------------------- /src/components/tags/br/index.js: -------------------------------------------------------------------------------- 1 | export { Br as default } from './Br'; 2 | -------------------------------------------------------------------------------- /src/components/tags/button/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/button/Button.jsx -------------------------------------------------------------------------------- /src/components/tags/button/button_details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/button/button_details.js -------------------------------------------------------------------------------- /src/components/tags/button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/button/index.js -------------------------------------------------------------------------------- /src/components/tags/details/Details.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/details/Details.jsx -------------------------------------------------------------------------------- /src/components/tags/details/details_details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/details/details_details.js -------------------------------------------------------------------------------- /src/components/tags/details/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/details/index.jsx -------------------------------------------------------------------------------- /src/components/tags/dialog/Dialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/dialog/Dialog.jsx -------------------------------------------------------------------------------- /src/components/tags/dialog/dialog_details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/dialog/dialog_details.js -------------------------------------------------------------------------------- /src/components/tags/dialog/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/dialog/index.jsx -------------------------------------------------------------------------------- /src/components/tags/div/Div.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/div/Div.jsx -------------------------------------------------------------------------------- /src/components/tags/div/div_details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/div/div_details.js -------------------------------------------------------------------------------- /src/components/tags/div/index.js: -------------------------------------------------------------------------------- 1 | export { Div as default } from './Div'; 2 | -------------------------------------------------------------------------------- /src/components/tags/h1/H1.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/h1/H1.jsx -------------------------------------------------------------------------------- /src/components/tags/h1/h1_details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/h1/h1_details.js -------------------------------------------------------------------------------- /src/components/tags/h1/index.jsx: -------------------------------------------------------------------------------- 1 | export { H1 as default } from "./H1"; 2 | -------------------------------------------------------------------------------- /src/components/tags/h2/H2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/h2/H2.jsx -------------------------------------------------------------------------------- /src/components/tags/h2/h2_details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/h2/h2_details.js -------------------------------------------------------------------------------- /src/components/tags/h2/index.jsx: -------------------------------------------------------------------------------- 1 | export { H2 as default } from "./H2"; 2 | -------------------------------------------------------------------------------- /src/components/tags/h3/H3.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/h3/H3.jsx -------------------------------------------------------------------------------- /src/components/tags/h3/h3_details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/h3/h3_details.js -------------------------------------------------------------------------------- /src/components/tags/h3/index.jsx: -------------------------------------------------------------------------------- 1 | export { H3 as default } from "./H3"; 2 | -------------------------------------------------------------------------------- /src/components/tags/h4/H4.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/h4/H4.jsx -------------------------------------------------------------------------------- /src/components/tags/h4/h4_details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/h4/h4_details.js -------------------------------------------------------------------------------- /src/components/tags/h4/index.js: -------------------------------------------------------------------------------- 1 | export { H4 as default } from './H4'; 2 | -------------------------------------------------------------------------------- /src/components/tags/h5/H5.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/h5/H5.jsx -------------------------------------------------------------------------------- /src/components/tags/h5/h5_details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/h5/h5_details.js -------------------------------------------------------------------------------- /src/components/tags/h5/index.js: -------------------------------------------------------------------------------- 1 | export { H5 as default } from './H5'; 2 | -------------------------------------------------------------------------------- /src/components/tags/h6/H6.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/h6/H6.jsx -------------------------------------------------------------------------------- /src/components/tags/h6/h6_details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/h6/h6_details.js -------------------------------------------------------------------------------- /src/components/tags/h6/index.js: -------------------------------------------------------------------------------- 1 | export { H6 as default } from './H6'; -------------------------------------------------------------------------------- /src/components/tags/header/header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/header/header.jsx -------------------------------------------------------------------------------- /src/components/tags/header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/header/index.js -------------------------------------------------------------------------------- /src/components/tags/img/Img.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/img/Img.jsx -------------------------------------------------------------------------------- /src/components/tags/img/img_details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/img/img_details.js -------------------------------------------------------------------------------- /src/components/tags/img/index.jsx: -------------------------------------------------------------------------------- 1 | export { Img as default } from "./Img"; -------------------------------------------------------------------------------- /src/components/tags/p/P.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/p/P.jsx -------------------------------------------------------------------------------- /src/components/tags/p/index.js: -------------------------------------------------------------------------------- 1 | export { P as default } from './P'; 2 | -------------------------------------------------------------------------------- /src/components/tags/p/p_details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/p/p_details.js -------------------------------------------------------------------------------- /src/components/tags/small/Small.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/small/Small.jsx -------------------------------------------------------------------------------- /src/components/tags/small/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/small/index.js -------------------------------------------------------------------------------- /src/components/tags/small/small_details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/components/tags/small/small_details.js -------------------------------------------------------------------------------- /src/components/tags/tags.module.css: -------------------------------------------------------------------------------- 1 | h1{ 2 | color: red 3 | } -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/pages/home/Documenter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/pages/home/Documenter.jsx -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclebay143/react-jsx-tag-components/HEAD/yarn.lock --------------------------------------------------------------------------------