Skip to content

Instantly share code, notes, and snippets.

@somebody32
Created December 15, 2015 06:25
Show Gist options
  • Select an option

  • Save somebody32/afbfd9ebdfff8edfe37b to your computer and use it in GitHub Desktop.

Select an option

Save somebody32/afbfd9ebdfff8edfe37b to your computer and use it in GitHub Desktop.
Generating SVG with React
import React from 'react';
export default class App extends React.Component {
render() {
return (
<svg>
<circle cx={50} cy={50} r={10} fill="red" />
</svg>
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment