// © XlXi 2021 // Graphictoria 5 import React from 'react'; const Card = (props) => { return (
{ props.children }
); }; const CardTitle = (props) => { return ( <>
{ props.children }

); }; export { Card, CardTitle };