File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
src/reusecore/Blockquote/Blockquote-alt-style Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import React from "react";
22import PropTypes from "prop-types" ;
33import BlockquoteStyle from "./blockquote.style" ;
44
5- const Blockquote = ( { className, ...props } ) => {
5+ const BlockquoteAlt = ( { className, ...props } ) => {
66 const AllClasses = [ "blockquote" ] ;
77 if ( className ) {
88 AllClasses . push ( className ) ;
@@ -24,11 +24,12 @@ const Blockquote = ({ className, ...props }) => {
2424 ) ;
2525} ;
2626
27- Blockquote . propTypes = {
27+ BlockquoteAlt . propTypes = {
2828 quote : PropTypes . string ,
2929 person : PropTypes . string ,
3030 title : PropTypes . string ,
3131 className : PropTypes . string ,
3232} ;
3333
34- export default Blockquote ;
34+ export default BlockquoteAlt ;
35+ export { BlockquoteAlt } ;
You can’t perform that action at this time.
0 commit comments