mirror of
https://github.com/0xShay/ticketchain.git
synced 2026-01-11 13:13:25 +00:00
17 lines
228 B
TypeScript
17 lines
228 B
TypeScript
'use client';
|
|
import React, { useEffect } from 'react';
|
|
|
|
const Test = () => {
|
|
useEffect(() => {
|
|
console.log('Print some shit');
|
|
}, []);
|
|
|
|
return (
|
|
<div>
|
|
<p>Hellao!</p>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Test;
|