PHP Classes

File: frontend/src/components/Tabs/AllTabs/SecondTab/index.tsx

Recommend this page to a friend!
  Classes of carlos carvalho   yrprey PHP application   frontend/src/components/Tabs/AllTabs/SecondTab/index.tsx   Download  
File: frontend/src/components/Tabs/AllTabs/SecondTab/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: 5 months ago
Size: 1,330 bytes
 

Contents

Class file image Download
import React from "react"; import { StyledSecondTab } from "./style"; import { BsCheck2Circle } from "react-icons/bs"; import Link from "next/link"; const SecondTab = () => { return ( <StyledSecondTab> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using Content here, content here, making it look like readable English. Many desktop publishing packages and web page edito... <Link href="/about" className="link"> View more </Link> </p> <div className="topic"> <div> {" "} <p> <BsCheck2Circle className="icon" /> ?System Security </p> <p> <BsCheck2Circle className="icon" /> ?Opertional Security </p> </div> <div> <p> <BsCheck2Circle className="icon" /> ?Trusted Partner </p> <p> <BsCheck2Circle className="icon" /> ?Product Security </p> </div> </div> </StyledSecondTab> ); }; export default SecondTab;