mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-10 01:16:39 +02:00
12 lines
233 B
JavaScript
12 lines
233 B
JavaScript
import React from 'react';
|
|
import './styles.css';
|
|
|
|
const Component = ({ text }) => (
|
|
<article className="user-feedback">
|
|
<form></form>
|
|
<p className="scream">{text}</p>
|
|
</article>
|
|
);
|
|
|
|
export default Component;
|