Skip to content

Instantly share code, notes, and snippets.

View ZACHSTRIVES's full-sized avatar
🀄

Zach Wang ZACHSTRIVES

🀄
View GitHub Profile

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@ZACHSTRIVES
ZACHSTRIVES / SvgRadarChart.tsx
Created February 6, 2023 04:10 — forked from brianfoody/SvgRadarChart.tsx
SVG Radar Chart in React Native
import React, { useMemo } from "react";
import { View } from "react-native";
import { degToRadians } from "src/components/OrbitLogo";
import Svg, { Circle, Line, Polygon } from "react-native-svg";
import times from "lodash.times";
type RadarData = {
value: number;
label: string;
};