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

); };