10 lines
154 B
TypeScript
10 lines
154 B
TypeScript
import { UserReminders } from "./UserReminders";
|
|
|
|
export const User = () => {
|
|
return (
|
|
<>
|
|
<UserReminders />
|
|
</>
|
|
);
|
|
};
|