From cb96da13a0085577820855b71b7894ed607e6f1d Mon Sep 17 00:00:00 2001 From: Jesse Jafa Date: Tue, 14 Jul 2020 07:59:24 +0300 Subject: [PATCH] Removed React import from pages/index.js (#15144) This should close https://github.com/vercel/next.js/issues/12964 but I'm leaving it up to one of the Tims (or if there are other maintainers) to close the issue as they see fit. --- examples/with-linaria/pages/index.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/examples/with-linaria/pages/index.js b/examples/with-linaria/pages/index.js index f64e98dcbc04f..f00e46b8065fc 100644 --- a/examples/with-linaria/pages/index.js +++ b/examples/with-linaria/pages/index.js @@ -1,4 +1,3 @@ -import React from 'react' import Head from 'next/head' import { styled } from 'linaria/react' @@ -23,11 +22,11 @@ const Box = styled.div` export default function Home() { return ( - + <> With Linaria Zero runtime CSS in JS - + ) }