Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

🔹 Description

It is a component use used for grouping different html tagscontents. Card can be also referred as a container of specific widget or feature.

...

🔹System Dependencies

...

Code Block
npm install empower-display --save

🔹 Component Variation

...

...

Configuration

Code Block
import { Card } from 'empower-display'

.......

return (
  <Card>
      <div>
          <h4>Card Sample</h4>
          <p>Sample Details</p>
      </div>
  </Card>
)

...