Skip to content

Commit

Permalink
cree el componente reutilizable card
Browse files Browse the repository at this point in the history
  • Loading branch information
ferdlg committed Oct 14, 2024
1 parent c0983bc commit 843eae0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
File renamed without changes.
10 changes: 10 additions & 0 deletions social-network/src/components/card/card.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from "react";
import '../../assets/styles/components/card/card.css'

export const Card =({children})=>{
return(
<div className="card">
{children}
</div>
);
}

0 comments on commit 843eae0

Please sign in to comment.