Some checks failed
Build & Deploy Mintel Blog / build-and-deploy (push) Failing after 2m19s
6 lines
132 B
TypeScript
6 lines
132 B
TypeScript
import React from 'react';
|
|
|
|
export const Reveal = ({ children }: { children: React.ReactNode }) => {
|
|
return <>{children}</>;
|
|
};
|