PHP Classes

File: frontend/src/components/Layout/index.tsx

Recommend this page to a friend!
  Classes of carlos carvalho   yrprey PHP application   frontend/src/components/Layout/index.tsx   Download  
File: frontend/src/components/Layout/index.tsx
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: yrprey PHP application
Web app to learn about OWASP API vulnerabilities
Author: By
Last change:
Date: 3 months ago
Size: 256 bytes
 

Contents

Class file image Download
import { IChildren } from "@/interfaces/IChildren/IChildren"; import { LayoutContainer } from "./style"; const Layout = ({children}: IChildren) => { return ( <LayoutContainer> {children} </LayoutContainer> ); }; export default Layout;