mirror of
https://github.com/Mastermindzh/dotfiles.git
synced 2024-11-22 14:53:58 +01:00
9 lines
176 B
React
9 lines
176 B
React
|
import React from "react";
|
||
|
|
||
|
|
||
|
const FunctionBasedComponent = ({param}) => {
|
||
|
return <span>Function based component</span>;
|
||
|
};
|
||
|
|
||
|
export default FunctionBasedComponent;
|