Skip to content

Instantly share code, notes, and snippets.

@code08-ind
Created March 29, 2021 13:07
Show Gist options
  • Save code08-ind/9bd5e7f4d7194b2cc3f426d512045829 to your computer and use it in GitHub Desktop.
Save code08-ind/9bd5e7f4d7194b2cc3f426d512045829 to your computer and use it in GitHub Desktop.
import React from 'react';
import ComponentB from './ComponentB';
const ComponentA = () => {
return (
<>
<ComponentB/>
</>
);
}
export default ComponentA;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment