Skip to content

Commit 0684790

Browse files
committed
change to component name to lowecase
1 parent 4681ae4 commit 0684790

15 files changed

+15
-15
lines changed

src/components/Card/Overlay/Dating.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from "react";
22
import { FaTimes, FaHeart } from 'react-icons/fa';
3-
import Section from '~components/Section'
3+
import Section from '~components/section'
44
import DatingData from '~data/models.json';
55

66
const OverlayDating = (props) => (

src/components/Card/Overlay/Movie.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from "react";
22
import { FaPlay, FaHeart, FaEllipsisH } from 'react-icons/fa';
3-
import Section from '~components/Section'
3+
import Section from '~components/section'
44
import MovieData from '~data/movies.json';
55

66
const OverlayMovie = (props) => (

src/components/Card/Overlay/Product.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from "react";
22
import { FaRegHeart } from 'react-icons/fa';
33
import Rater from 'react-rater';
44
import 'react-rater/lib/react-rater.css';
5-
import Section from '~components/Section'
5+
import Section from '~components/section'
66
import ProductData from '~data/products.json'
77

88
const OverlayProduct = (props) => (

src/components/Card/Overlay/Video.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from "react";
22
import { FaPlayCircle } from 'react-icons/fa';
3-
import Section from '~components/Section'
3+
import Section from '~components/section'
44
import VideoData from '~data/videos.json';
55

66
const OverlayVideo = (props) => (

src/components/Card/Stacked/Badge.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from "react";
22
import Moment from 'react-moment';
3-
import Section from '~components/Section'
3+
import Section from '~components/section'
44
import BlogData from '~data/posts.json';
55

66
const StackedBadge = (props) => (

src/components/Card/Stacked/BadgeVideo.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from "react";
22
import { FaPlay } from 'react-icons/fa';
3-
import Section from '~components/Section'
3+
import Section from '~components/section'
44
import VideoData from '~data/videos.json'
55

66
const StackedBadgeVideo = (props) => (

src/components/Card/Stacked/Basic.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from "react";
22
import Moment from 'react-moment';
33
import BlogData from "~data/posts.json";
4-
import Section from "~components/Section"
4+
import Section from "~components/section"
55

66
const StackedBasic = (props) => (
77
<article className={"card" + (props.cssClasses ? " " + props.cssClasses:"")}>

src/components/Card/Stacked/Cta.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from "react"
22
import CtaData from '~data/ctas.json';
3-
import Section from "~components/Section";
3+
import Section from "~components/section";
44

55
const StackedCta = (props) => (
66
<article className={"card card--cta" + (props.cssClasses ? " " + props.cssClasses:"")}>

src/components/Card/Stacked/FloatingIcon.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from "react";
22
import { FaPlay } from 'react-icons/fa';
33
import Button from "~components/Button/Icon";
4-
import Section from '~components/Section'
4+
import Section from '~components/section'
55
import MovieData from '~data/movies.json';
66

77
const StackedFloatingIcon = (props) => (

src/components/Card/Stacked/MediaObject.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from "react";
22
import Moment from 'react-moment';
33
import BlogData from '~data/posts.json';
44
import StackedBasic from './Basic'
5-
import Section from '~components/Section'
5+
import Section from '~components/section'
66

77
const StackedMediaObject = (props) => (
88
<article className={"card" + (props.cssClasses ? " " + props.cssClasses:"")}>

src/components/Card/Stacked/MinimalThemed.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from "react"
2-
import Section from '~components/Section'
2+
import Section from '~components/section'
33
import BlogData from '~data/posts.json';
44

55
const StackedMinimalThemed = (props) => (

src/components/Card/Stacked/Overlap.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from "react";
22
import Moment from 'react-moment';
33
import BlogData from '~data/posts.json';
4-
import Section from "~components/Section"
4+
import Section from "~components/section"
55

66
const StackedOverlap = (props) => (
77
<article className={"card card--overlap" + (props.cssClasses ? " " + props.cssClasses:"")}>

src/components/Card/Stacked/Social.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from "react";
22
import { FaThumbsUp, FaRegCommentAlt, FaEllipsisV } from 'react-icons/fa';
3-
import Section from "~components/Section"
3+
import Section from "~components/section"
44
import SocialData from '~data/social.json';
55

66
const StackedSocial = (props) => (

src/components/Card/Stacked/Testimonial.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from "react"
2-
import Section from '~components/Section'
2+
import Section from '~components/section'
33
import TestimonialData from '~data/testimonials.json';
44

55
const StackedTestimonial = (props) => (

src/components/Card/Stacked/Tour.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from "react";
22
import { FaMapMarkerAlt } from 'react-icons/fa';
3-
import Section from '~components/Section'
3+
import Section from '~components/section'
44
import TourData from "~data/tours.json"
55

66
const StackedTour = (props) => (

0 commit comments

Comments
 (0)