I hereby claim:
- I am rakenodiax on github.
- I am kellenfu (https://keybase.io/kellenfu) on keybase.
- I have a public key ASB1vo5gdcjFEAwL4NhErl4HLzkqoYd2Rni9uKYl1Z3vrgo
To claim this, I am signing this object:
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Hello, world!</title> | |
</head> | |
<body> | |
<p>Hello, {{ name }}!</p> | |
</body> | |
</html> |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
{ | |
"compilerOptions": { | |
"target": "es5", | |
"lib": [ | |
"dom", | |
"dom.iterable", | |
"esnext" | |
], | |
"allowJs": true, | |
"skipLibCheck": true, |
<?xml version="1.0" encoding="UTF-8"?> | |
<rss version="2.0" | |
xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" | |
xmlns:content="http://purl.org/rss/1.0/modules/content/"> | |
<channel> | |
<title>Rice, Spice, and Whine</title> | |
<link>https://ricespicewhine.gitlab.io</link> | |
<language>en-us</language> | |
<copyright>Unlicensed</copyright> | |
<itunes:author>Rice, Spice, and Whine</itunes:author> |
import React, { useState } from 'react'; | |
import { | |
IsOptional, | |
MinLength, | |
registerDecorator, | |
validateSync, | |
ValidationArguments, | |
ValidationOptions, | |
} from 'class-validator'; | |
import { plainToClass } from 'class-transformer'; |
import React from "react"; | |
import {Card, CardContent, CardHeader, Grid, Typography} from "@material-ui/core"; | |
type Props = { | |
title: string; | |
start?: React.ReactNode; | |
}; | |
const CustomCard: React.FC<Props> = ({title, start, children}) => { | |
return ( |