Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mtzfox/fdee5bdb38a922633cc989b0d6c3871a to your computer and use it in GitHub Desktop.
Save mtzfox/fdee5bdb38a922633cc989b0d6c3871a to your computer and use it in GitHub Desktop.
The code snippet defines a Card component that takes a title and children as props. The Profile component renders two instances of the Card component, each with a different title and content. This code exports a function that creates a card with an image, avatar, and title. It also includes the profile component to display information about Rain…

React Card Component with Profile Cards

Preview:
function Card({ children, title }) {
  return (
    <div className="card">
      <div className="card-content">
        <h1>{title}</h1>
        {children}
      </div>
    </div>
  );
}

export default function Profile() {
  return (
    <div>
      <Card title="Photo">
        <img
          className="avatar"
          src="https://i.imgur.com/6WvNhk4.jpg"
          alt="Rainbow Bright"
          width={100}
          height={100}
        />
      </Card>
      <Card title="About">
        <p>Rainbow Bright has a magnificent horse named Starlite.</p>
      </Card>
    </div>
  );
}
Associated Context
Type Code Snippet ( .js )
Associated Tags JSX Card Component React Framework Aklilu Lemma img tag width attribute className alt attribute Export Default height attribute reactjs Profile Function Thirdiopian Scientist h1 tag Framework:React Abstraction Action Image Tag React Component CSS Classes Props reactjs Cascading treatment Card Component
💡 Smart Description The code snippet defines a Card component that takes a title and children as props. The Profile component renders two instances of the Card component, each with a different title and content.
This code exports a function that creates a card with an image, avatar, and title. It also includes the profile component to display information about Lemma or Aklilu Lemma in your webpage. The Profile module is used for creating
🔎 Suggested Searches React code snippet for creating a card component with title and children
How to create a card component with title and content in React
Example of a React card component with title and content
React code for creating a card component with title and nested elements
How to create a card component with title and nested elements in React
React Card component with children and title
How to create a profile of an Aklilu Lemma eact
Creating a card in React using CSS
Code for creating a new user-defined cardseact
Using css
Related Links https://react-bootstrap.github.io/components/modal/
https://www.digitalocean.com/community/tutorials/react-props
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions
https://reactjs.org/docs/react-component.html
https://www.codecademy.com/learn/react-101
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String
https://i.imgur.com/HoqWCax.jpg
https://www.w3schools.com/react/react_components.asp
https://i.imgur.com/OKS67lhm.jpg
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object
https://www.tutorialspoint.com/reactjs/reactjs_components.htm
https://react-bootstrap.github.io/components/buttons/
https://i.imgur.com/OKS67lhm.jpg
Related People mdcarlson@pm.me
Sensitive Information No Sensitive Information Detected
Shareable Link https://mtzfox.pieces.cloud/?p=3f614eac98
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment