mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
6 lines
120 B
JavaScript
6 lines
120 B
JavaScript
import React from 'react';
|
|
|
|
export default function Card({ children }) {
|
|
return <div class="card">{children}</div>;
|
|
}
|