mirror of
https://github.com/symfony/recipes.git
synced 2026-09-11 23:26:27 +03:00
6 lines
110 B
React
6 lines
110 B
React
import React from 'react';
|
|
|
|
export default function (props) {
|
|
return <div>Hello {props.fullName}</div>;
|
|
}
|