8 lines
136 B
TypeScript
8 lines
136 B
TypeScript
import React from "react";
|
|
|
|
const EmptyLayout: React.FC = ({ children }) => {
|
|
return <>{children}</>;
|
|
};
|
|
|
|
export default EmptyLayout;
|