import React from 'react';
import styled from 'styled-components';
var MainTxt = styled.div`
color: red;
background-color: gray;
`;
var FPara = styled.p`
font-family: 'Times New Roman', Times, serif;
width: 450px;
background-color: orange;
padding:25px;
`;
function App() {
return (
<div>
<MainTxt>
This is text
</MainTxt>
<FPara>
the quick rbown fox jumps over the lazy dogthe quick rbown fox jumps over the lazy dog
the quick rbown fox jumps over the lazy dogthe quick rbown fox jumps over the lazy dog
the quick rbown fox jumps over the lazy dogthe quick rbown fox jumps over the lazy dog
the quick rbown fox jumps over the lazy dogthe quick rbown fox jumps over the lazy dog
the quick rbown fox jumps over the lazy dogthe quick rbown fox jumps over the lazy dog
the quick rbown fox jumps over the lazy dogthe quick rbown fox jumps over the lazy dog
</FPara>
</div>
);
}
export default App;