This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
EN-version: https://www.freecodecamp.org/news/code-of-conduct/ | |
ES-versino: | |
freeCodeCamp es un lugar amigable para aprender a codificar. Estamos comprometidos a mantenerlo de esa manera. | |
Al usar freeCodeCamp, estas aceptando que seguirás este código de conducta. | |
En resumen: Sé amable. No acoso, trolling o spam. | |
- Acoso incluye lenguaje e imágenes sexuales, intimidación deliberada, acecho, insultos, atención no deseada, difamación y cualquier piratería maliciosa o ingeniería social. freeCodeCamp debe ser una experiencia libre de acoso para todos, independientemente de su género, identidad y expresión de género, edad, orientación sexual, discapacidad, apariencia física, tamaño corporal, raza, origen nacional o religión (o falta de ella). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Learning Goal: Learn the basics of computer science with Base_cs series | |
Learning Curriculum: | |
Schedule its based on the first link, a compiled list of base_cs series content. The rest of links are other forms of the content to support our learning | |
- Github Repo | |
Link: https://github.com/vaidehijoshi/basecs-series | |
- Podcast | |
Link: https://overcast.fm/itunes1304168963/base-cs-podcast |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
const Alert = ({ children, className = "", style, alertType, ...rest }) => { | |
const alertTypes = { | |
error: [ | |
{ | |
textColor: "text-red-700", | |
bgColor: "bg-red-100", | |
borderColor: "border-red-400" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
const Alert = ({ children, className = "", style, alertType, ...rest }) => { | |
const alertTypes = { | |
error: [ | |
{ | |
textColor: "text-red-700", | |
bgColor: "bg-red-100", | |
borderColor: "border-red-400" | |
} |