This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { DefaultErrorFallback } from './ErrorFallback/DefaultErrorFallback'; | |
import { logError } from '@/utils/logError'; | |
interface Props { | |
children: React.ReactNode; | |
fallback?: React.ReactNode; | |
onError?: (error: Error, errorInfo: React.ErrorInfo) => void; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.element { | |
background: | |
url('background-image1.jpg') top left/cover no-repeat, | |
url('background-image2.jpg') bottom right/cover no-repeat, | |
linear-gradient(to right, #3498db, #2ecc71); | |
background-blend-mode: multiply; | |
background-origin: content-box; | |
background-clip: padding-box; | |
background-attachment: fixed; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Semantic HTML Example</title> | |
<style> | |
/* Add some basic styling for better presentation */ | |
body { | |
font-family: Arial, sans-serif; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Sample Form</title> | |
<style> | |
/* Add some basic styling for better presentation */ | |
body { | |
font-family: Arial, sans-serif; |