In styled-components if I want to style a div for example I can do
export const StyledDiv = styled.div` myStyle Goes inside these back ticks`;
But I know that in vanilla JS let x=2``; will return an error when attempted.
So, what's the name of this special elementName and backticks conjoined syntax in styled-components?