mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
7 lines
198 B
JavaScript
7 lines
198 B
JavaScript
import React from 'react';
|
|
import classNames from 'classnames';
|
|
|
|
export default function Card({ className, children }) {
|
|
return <div className={classNames('card', className)}>{children}</div>;
|
|
}
|