import React from 'react'; import SyntaxHighlighter from 'react-syntax-highlighter'; import { vs2015 } from 'react-syntax-highlighter/dist/cjs/styles/hljs'; import Box from '@mui/material/Box'; import Typography from '@mui/material/Typography'; import { useTheme } from '@mui/material/styles'; const BuildTools = () => { const theme = useTheme(); return ( Build tools and full documention Components, plugins, and build tools are all thoroughly documented with live examples and markup for easier use and customization. {` > $ yarn install // Or > $ npm install // Everything installed! > $ yarn start // Or > $ npm run start // LiveReload started. Opening localhost:3000 `} ) } export default BuildTools