import React from 'react'; import Container from '@material-ui/core/Container'; import Typography from '@material-ui/core/Typography'; import Box from '@material-ui/core/Box'; import AppBar from '../components/AppBar' export default function SearchSyntax() { return (
Search syntax Available operators: && , ||, !, -, ,(comma)
Examples:
1) winter&&(rarity||fluttershy)
2) autumn, -twilight sparkle
3) winter&&!(forest||tree)
); }