Skip to content

Instantly share code, notes, and snippets.

View ericgeorgeriley's full-sized avatar

Eric George Riley ericgeorgeriley

View GitHub Profile
@ericgeorgeriley
ericgeorgeriley / vc_infinite_image_carousel.txt
Created January 31, 2018 12:31 — forked from humbertosilva/vc_infinite_image_carousel.txt
Turn Visual Composer Image Carousel into Visual Composer INFINTE Image Carousel
@ericgeorgeriley
ericgeorgeriley / Start Rating React Component
Created October 29, 2019 12:33
a really simple component for star rating input
import React from 'react';
export class StarRating extends React.Component {
constructor(props) {
super(props);
this.state = {
stars: [],
rating: 0,