import * as React from 'react';
import { Button } from '../../buttons/Button/Button';
import Card from '../../modules/Card/Card';
import styles from './RadioBlockContentExample.scss';
interface BlueprintCardProps {
blueprintName: string;
lastModified: string;
}
const BlueprintCard = (props: BlueprintCardProps) => {
const { blueprintName, lastModified } = props;
const renderFooter = (): any => (
);
return (
);
};
const blueprints = [
{
name: 'adamperry',
lastModified: '3/29/2022',
},
{
name: 'marlee.net',
lastModified: '4/4/2022',
},
{
name: 'Starship Wingnut',
lastModified: '4/4/2022',
},
{
name: 'yazmin.org',
lastModified: '4/4/2022',
},
];
interface IBlueprint {
name: string;
lastModified: string;
}
const radioBlockOptions = blueprints.reduce(
(options, blueprint: IBlueprint) => ({
...options,
[blueprint.name]: {
content: ,
style: {
textAlign: 'unset',
margin: '5px 30px 5px 30px',
borderRadius: '4px',
},
},
}),
{}
);
export default radioBlockOptions;